1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00

Add VoidLinux support

This commit is contained in:
Logen Kain 2020-03-21 00:13:29 -04:00
parent 8c19e0b60f
commit 83ffb01d13

View file

@ -53,6 +53,7 @@ fi
#Linux Mint = linuxmint
#Ubuntu = ubuntu
#Slackware = slackware
#VoidLinux = voidlinux
#XUbuntu = ubuntu
#Zorin = Zorin
if [ -n "$lsb_command" ]; then
@ -88,6 +89,13 @@ elif [ "$DISTRO" == "fedora" ] || [ "$DISTRO" == "redhat" ] || [ "$DISTRO" == "c
installed_packages=`yum list installed`
installer_command="sudo yum install "
pkg_install
elif [ "$DISTRO" == "voidlinux" ]; then
echo "VoidLinux detected."
pkg_list="gcc glu-devel zlib-devel alsa-lib-devel $GET_WGET"
installed_packages=`xbps-query -l`
installer_command="sudo xbps-install -Sy "
pkg_install
elif [ -z "$DISTRO" ]; then
echo "Unable to detect distro, skipping package installation"
echo "Please be aware that for QB64 to compile, you will need the following installed:"