Dependency installer for Fedora added.

This commit is contained in:
Storm Dragon
2026-08-20 22:30:37 -04:00
parent 7ec9ef3b87
commit 4b312099b4
+49
View File
@@ -0,0 +1,49 @@
#!/usr/bin/env bash
# Immediately exit if errors are encountered.
set -e
# Wine dependencies installer for Fedora Linux
# If this fails on your system, please contact storm_dragon@stormux.org
configure_fedora() {
packageList=(
7zip
alsa-lib
alsa-plugins-pulseaudio
cabextract
curl
dialog
dos2unix
gawk
gnutls
gstreamer1-plugin-libav
gstreamer1-plugins-bad-free
gstreamer1-plugins-good
gstreamer1-plugins-ugly-free
libjpeg-turbo
libpng
libwbclient
mesa-dri-drivers
mpg123
ncurses
openal-soft
pulseaudio-libs
sdl2-compat
sox
sqlite
translate-shell
unzip
w3m
wine
winetricks
xdg-utils
xz
)
sudo dnf install --assumeyes "${packageList[@]}"
}
configure_fedora
exit 0