mirror of
https://github.com/RasppleII/a2server.git
synced 2025-04-11 04:37:08 +00:00
Get Ivan's precompiled binaries from his server
Ivan's precompiled binaries of nulib2, The Unarchiver, and netatalk for Debian and Raspbian aren't going to be part of this repository, so I've reverted to hardcoding Ivan's server as the source of those things. We could perhaps download and compile nulib2 and The Unarchiver, and we'd have to if the script doesn't recognize Debian/Raspbian. Ideally for those systems we'd download .deb packages with full and proper dependency tracking, but we'd still need source for use on non-Debian systems, should we ever develop support for those. (OS X is a good candidate for such a system?)
This commit is contained in:
parent
982836dc7c
commit
ff2da76e84
@ -23,9 +23,9 @@ if [[ ! -f /usr/local/bin/nulib2 ]]; then
|
||||
|
||||
cd /tmp
|
||||
if [[ $isRpi ]]; then
|
||||
wget -qO- "${scriptURL}files/nulib2-rpi.tgz" | sudo tar Pzx
|
||||
wget -qO- "http://appleii.ivanx.com/a2server/files/nulib2-rpi.tgz" | sudo tar Pzx
|
||||
elif [[ $isDebian ]]; then
|
||||
wget -qO- "${scriptURL}files/nulib2-debian7_x86.tgz" | sudo tar Pzx
|
||||
wget -qO- "http://appleii.ivanx.com/a2server/files/nulib2-debian7_x86.tgz" | sudo tar Pzx
|
||||
fi
|
||||
|
||||
if [[ ! -f /usr/local/bin/nulib2 ]]; then
|
||||
@ -78,9 +78,9 @@ if [[ ! -f /usr/local/bin/unar ]]; then
|
||||
sudo apt-get -y install libgnustep-base1.22
|
||||
sudo apt-get clean
|
||||
if [[ $isRpi ]]; then
|
||||
wget -qO- "${scriptURL}files/unar-rpi.tgz" | sudo tar Pzx
|
||||
wget -qO- "http://appleii.ivanx.com/a2server/files/unar-rpi.tgz" | sudo tar Pzx
|
||||
elif [[ $isDebian ]]; then
|
||||
wget -qO- "${scriptURL}files/unar-debian7_x86.tgz" | sudo tar Pzx
|
||||
wget -qO- "http://appleii.ivanx.com/a2server/files/unar-debian7_x86.tgz" | sudo tar Pzx
|
||||
fi
|
||||
fi
|
||||
if [[ ! -f /usr/local/bin/unar ]]; then
|
||||
|
@ -73,9 +73,9 @@ else
|
||||
|
||||
# install Netatalk
|
||||
if [[ $isRpi ]]; then
|
||||
{ wget -qO- /tmp/netatalk.tgz ${scriptURL}files/netatalk224-rpi.tgz | sudo tar Pzx; } 2> /dev/null
|
||||
{ wget -qO- /tmp/netatalk.tgz "http://appleii.ivanx.com/a2server/files/netatalk224-rpi.tgz" | sudo tar Pzx; } 2> /dev/null
|
||||
elif [[ $isDebian ]]; then
|
||||
{ wget -qO- /tmp/netatalk.tgz ${scriptURL}files/netatalk224-debian7_x86.tgz | sudo tar Pzx; } 2> /dev/null
|
||||
{ wget -qO- /tmp/netatalk.tgz "http://appleii.ivanx.com/a2server/files/netatalk224-debian7_x86.tgz" | sudo tar Pzx; } 2> /dev/null
|
||||
fi
|
||||
sudo mandb &> /dev/null
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user