Update sysdep-install.sh (#158)

chore: add void linux support for sysdep-install

Added sysdep-install switch case for void, it was a pain in the ass to find all the packages, the packages in long list may install as dependencies for other packages in the list, but my installation process was in bits I couldn't collect so I put everything prom the package removal process after build is complete.
This commit is contained in:
Hellorge 2021-11-05 02:40:31 +05:30 committed by GitHub
parent 165008b9ac
commit 041393293d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,9 @@ if [ -f /etc/os-release ]; then
sudo pacman -S --noconfirm --needed \
cmake ninja extra-cmake-modules
;;
"void")
sudo xbps-install gcc git nodejs cmake ninja extra-cmake-modules kconfig-devel kconfigwidgets-devel ki18n-devel kcoreaddons-devel kdeclarative-devel kcmutils-devel qt5-svg-devel qt5-declarative-devel qt5-quickcontrols2-devel gettext-devel knotifications-devel kpackage-devel kservice-devel kiconthemes-devel kdoctools-devel kauth-devel kcrash-devel kjobwidgets-devel ksolid-devel kio-devel kwallet-devel kconfigwidgets-devel ktextwidgets-devel kglobalaccel-devel kdeclarative-devel kxmlgui-devel kcmutils-devel kbookmarks-devel
;;
*)
echo "⚠ Your distribution is $PRETTY_NAME, but you have to install system dependencies manually."