2025-12-09 05:31:55 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
|
|
echo "[centos/dependencies] Installing CentOS build dependencies..."
|
|
|
|
|
|
|
|
|
|
dnf -y update
|
|
|
|
|
dnf -y install \
|
|
|
|
|
git \
|
|
|
|
|
rsync \
|
|
|
|
|
rpm-build \
|
|
|
|
|
make \
|
|
|
|
|
gcc \
|
|
|
|
|
bash \
|
|
|
|
|
curl-minimal \
|
|
|
|
|
ca-certificates \
|
2025-12-09 22:57:11 +01:00
|
|
|
sudo \
|
2025-12-09 05:31:55 +01:00
|
|
|
xz
|
|
|
|
|
|
|
|
|
|
dnf clean all
|
|
|
|
|
|
|
|
|
|
echo "[centos/dependencies] Done."
|