Added Linux Mint dependency installer script.
This commit is contained in:
committed by
Storm Dragon
parent
528ee7cd56
commit
cf1377d9e8
29
wine/install-dependencies-mint.sh
Normal file
29
wine/install-dependencies-mint.sh
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Immediately exit if errors are encountered.
|
||||
set -e
|
||||
|
||||
# Wine dependencies installer for Debian/Ubuntu
|
||||
# If this fails on your system, please contact storm_dragon@stormux.org
|
||||
|
||||
configure_debian() {
|
||||
packageList=(
|
||||
curl
|
||||
dialog
|
||||
gawk
|
||||
gstreamer1.0-plugins-bad:i386
|
||||
gstreamer1.0-plugins-good:i386
|
||||
gstreamer1.0-plugins-ugly:i386
|
||||
mono-complete
|
||||
libncurses5-dev
|
||||
w3m
|
||||
winehq-stable
|
||||
)
|
||||
# Make sure 32-bit libraries are available.
|
||||
sudo dpkg --add-architecture i386
|
||||
sudo apt install --install-recommends "${packageList[@]}"
|
||||
}
|
||||
|
||||
configure_debian
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user