mirror of
https://github.com/Relintai/osxcross.git
synced 2025-02-03 22:45:56 +01:00
Added Arch linux option in the dependencies script
This commit is contained in:
parent
6525b2b7d3
commit
a298620e9d
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user