2025-12-09 05:31:55 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
|
|
echo "[fedora/dependencies] Installing Fedora build dependencies..."
|
|
|
|
|
|
|
|
|
|
dnf -y update
|
|
|
|
|
dnf -y install \
|
|
|
|
|
git \
|
|
|
|
|
rsync \
|
|
|
|
|
rpm-build \
|
|
|
|
|
make \
|
|
|
|
|
gcc \
|
|
|
|
|
bash \
|
|
|
|
|
curl \
|
|
|
|
|
ca-certificates \
|
|
|
|
|
python3 \
|
2025-12-15 12:14:48 +01:00
|
|
|
python3-pip \
|
2025-12-09 05:31:55 +01:00
|
|
|
xz
|
|
|
|
|
|
|
|
|
|
dnf clean all
|
|
|
|
|
|
|
|
|
|
echo "[fedora/dependencies] Done."
|