Files
fluffy-pancake/build/10-build.sh
T

90 lines
1.8 KiB
Bash
Raw Normal View History

2026-02-17 17:27:26 +01:00
#!/usr/bin/bash
set -eoux pipefail
###############################################################################
# Main Build Script
###############################################################################
# Source helper functions
# shellcheck source=/dev/null
source /ctx/build/copr-helpers.sh
2026-02-28 19:59:16 +01:00
2026-02-17 17:27:26 +01:00
# Enable nullglob for all glob operations to prevent failures on empty matches
shopt -s nullglob
echo "::group:: Copy Bluefin Config from Common"
mkdir -p /usr/share/ublue-os/just/
cp -r /ctx/oci/common/bluefin/usr/share/ublue-os/just/* /usr/share/ublue-os/just/
echo "::endgroup::"
echo "::group:: Install Packages"
2026-02-28 15:04:42 +01:00
# Base utilities
2026-02-17 18:43:19 +01:00
dnf5 install -y \
2026-02-28 15:04:42 +01:00
fastfetch \
2026-02-28 19:40:36 +01:00
btop \
2026-02-28 19:59:16 +01:00
libvirt \
libvirt-daemon \
libvirt-daemon-driver-qemu \
libvirt-daemon-config-network \
libvirt-daemon-kvm \
libvirt-client \
qemu-kvm \
qemu-img \
virt-manager \
virt-viewer \
2026-02-28 22:18:46 +01:00
usbredir
echo "::endgroup::"
echo "::group:: Remove Firefox Systempackage"
dnf5 remove -y \
firefox \
firefox-langpacks\*
2026-02-28 20:23:13 +01:00
2026-02-28 21:46:22 +01:00
echo "::endgroup::"
2026-02-28 22:18:46 +01:00
2026-02-28 21:46:22 +01:00
echo "::group:: Copy Custom Files"
mkdir -p /usr/share/ublue-os/homebrew/
cp /ctx/custom/brew/*.Brewfile /usr/share/ublue-os/homebrew/
find /ctx/custom/ujust -iname '*.just' -exec printf "\n\n" \; -exec cat {} \; \
>> /usr/share/ublue-os/just/60-custom.just
mkdir -p /etc/flatpak/preinstall.d/
cp /ctx/custom/flatpaks/*.preinstall /etc/flatpak/preinstall.d/
echo "::endgroup::"
echo "::group:: Installing COSMIC"
2026-02-17 17:27:26 +01:00
2026-02-28 19:40:36 +01:00
copr_install_isolated "ryanabx/cosmic-epoch" \
cosmic-desktop
2026-02-28 21:46:22 +01:00
2026-02-17 17:27:26 +01:00
echo "::endgroup::"
2026-02-28 21:46:22 +01:00
2026-02-17 17:27:26 +01:00
echo "::group:: System Configuration"
systemctl enable podman.socket
2026-02-28 15:04:42 +01:00
systemctl enable bluetooth.service
2026-02-28 19:40:36 +01:00
systemctl enable libvirtd.service
systemctl enable virtlogd.service
2026-02-17 17:27:26 +01:00
echo "::endgroup::"
shopt -u nullglob
echo "Custom build complete!"