Merge pull request #1133 from Duesentrieb-Incorporation/master

Added support for Manjaro Linux
This commit is contained in:
bmw 2015-10-25 20:38:26 -07:00
commit 605aba5a1e
4 changed files with 24 additions and 15 deletions

19
bootstrap/_arch_common.sh Executable file
View file

@ -0,0 +1,19 @@
#!/bin/sh
# Tested with:
# - Manjaro 15.09 (x86_64)
# - ArchLinux (x86_64)
# "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 \

View file

@ -1,15 +0,0 @@
#!/bin/sh
# "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 \

1
bootstrap/archlinux.sh Symbolic link
View file

@ -0,0 +1 @@
_arch_common.sh

1
bootstrap/manjaro.sh Symbolic link
View file

@ -0,0 +1 @@
_arch_common.sh

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/manjaro.sh
elif [ -f /etc/redhat-release ] ; then
echo "Bootstrapping dependencies for RedHat-based OSes..."
$SUDO $BOOTSTRAP/_rpm_common.sh