Files
pkgmgr/scripts/installation/fedora/dependencies.sh

24 lines
322 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
echo "[fedora/dependencies] Installing Fedora build dependencies..."
dnf -y update
dnf -y install \
git \
gnupg2 \
rsync \
rpm-build \
make \
gcc \
bash \
curl \
ca-certificates \
python3 \
python3-pip \
xz
dnf clean all
echo "[fedora/dependencies] Done."