1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 01:10:23 +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 #Linux Mint = linuxmint
#Ubuntu = ubuntu #Ubuntu = ubuntu
#Slackware = slackware #Slackware = slackware
#VoidLinux = voidlinux
#XUbuntu = ubuntu #XUbuntu = ubuntu
#Zorin = Zorin #Zorin = Zorin
if [ -n "$lsb_command" ]; then if [ -n "$lsb_command" ]; then
@ -88,6 +89,13 @@ elif [ "$DISTRO" == "fedora" ] || [ "$DISTRO" == "redhat" ] || [ "$DISTRO" == "c
installed_packages=`yum list installed` installed_packages=`yum list installed`
installer_command="sudo yum install " installer_command="sudo yum install "
pkg_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 elif [ -z "$DISTRO" ]; then
echo "Unable to detect distro, skipping package installation" echo "Unable to detect distro, skipping package installation"
echo "Please be aware that for QB64 to compile, you will need the following installed:" echo "Please be aware that for QB64 to compile, you will need the following installed:"