1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
#!/bin/bash
# This script works with Fedora. While not tested, it may also work with its
# derivatives (CentOS, RHEL) or even other RPM-based distros, contributions
# fixing any deviations in package naming are welcome here.
# shellcheck disable=SC1091
set -o pipefail
case "$1" in
name)
echo "No build environment name required for RPM-based distros." >&2
echo "This script installs the build dependencies via dnf using the \"setup\" option." >&2
;;
setup)
if grep -qP '^NAME=.*Fedora.*' /etc/os-release; then
# Add RPM Fusion repository (required for faad2 and ffmpeg-devel)
sudo dnf install -y "https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm"
else
echo "Warning: You are not running Fedora and may have to set up RPM Fusion manually if there are missing packages!"
fi
# Install the build dependencies.
# This list is largely identical to what `dnf builddep mixxx` would
# install, with the exception of replacing Qt 5 with Qt 6 (once 2.5 is
# released, we could install `dnf-command(builddep)` and then use `dnf
# builddep mixxx`).
sudo dnf install -y \
appstream \
ccache \
chrpath \
cmake \
desktop-file-utils \
faad2 \
ffmpeg-devel \
fftw-devel \
flac-devel \
gcc-c++ \
gmock-devel \
google-benchmark-devel \
gtest-devel \
guidelines-support-library-devel \
hidapi-devel \
lame-devel \
libchromaprint-devel \
libebur128-devel \
libid3tag-devel \
libmad-devel \
libmodplug-devel \
libmp4v2-devel \
libsndfile-devel \
libusb1-devel \
libvorbis-devel \
lilv-devel \
mesa-libGL-devel \
mesa-libGLU-devel \
ninja-build \
opus-devel \
opusfile-devel \
portaudio-devel \
portmidi-devel \
protobuf-compiler \
protobuf-lite-devel \
qt6-qt{5compat,base,base-private,declarative,shadertools,svg}-devel \
qtkeychain-qt6-devel \
rubberband-devel \
soundtouch-devel \
sqlite-devel \
taglib-devel \
upower-devel \
wavpack-devel \
zlib-devel
;;
*)
echo "Usage: $0 [options]"
echo ""
echo "options:"
echo " help Displays this help."
echo " name Displays the name of the required build environment."
echo " setup Installs the build environment."
;;
esac
|