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:
T. Joseph Carter 2015-10-04 02:04:52 -07:00
parent 982836dc7c
commit ff2da76e84
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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