From a298620e9d3b587dd20e3bc1d5e62eb1764a0459 Mon Sep 17 00:00:00 2001 From: b1ue Date: Tue, 5 Mar 2019 16:26:10 +0100 Subject: [PATCH] Added Arch linux option in the dependencies script --- tools/get_dependencies.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/get_dependencies.sh b/tools/get_dependencies.sh index f2a36e2..1414d9f 100755 --- a/tools/get_dependencies.sh +++ b/tools/get_dependencies.sh @@ -44,6 +44,11 @@ get_debian_deps() libssl-dev bash patch make tar xz-utils bzip2 gzip sed cpio libbz2-dev } +get_arch_deps() +{ + pacman -S clang llvm libxml2 openssl bash patch make tar bzip2 gzip sed cpio xz +} + unknown() { echo "Unknown system type. Please get dependencies by hand " @@ -67,6 +72,8 @@ if [ -e /etc/issue ]; then get_fedora_deps elif [ "`grep -i mageia /etc/issue`" ]; then get_mageia_deps + elif [ "`grep -i arch /etc/issue`" ]; then + get_arch_deps else unknown fi