Added support for Manjaro Linux in install-script

This commit is contained in:
Damian Duesentrieb
2015-10-25 21:28:19 +01:00
parent 703254b95c
commit 95a6b8cbad
2 changed files with 22 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh
# Manjaros package-management is very similiar to Arch-Linux.
# Therefore this script is currently identical to <archlinux.sh>.
# This must not hold in future.
# "python-virtualenv" is Python3, but "python2-virtualenv" provides
# only "virtualenv2" binary, not "virtualenv" necessary in
# ./bootstrap/dev/_common_venv.sh
pacman -S --needed \
git \
python2 \
python-virtualenv \
gcc \
dialog \
augeas \
openssl \
libffi \
ca-certificates \
+3
View File
@@ -41,6 +41,9 @@ then
elif [ -f /etc/arch-release ] ; then
echo "Bootstrapping dependencies for Archlinux..."
$SUDO $BOOTSTRAP/archlinux.sh
elif [ -f /etc/manjaro-release ] ; then
echo "Bootstrapping dependencies for Manjaro linux..."
$SUDO $BOOTSTRAP/archlinux.sh
elif [ -f /etc/redhat-release ] ; then
echo "Bootstrapping dependencies for RedHat-based OSes..."
$SUDO $BOOTSTRAP/_rpm_common.sh