2014-10-11 16:31:49 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
PLATFORM=$(uname -m)
|
|
|
|
|
|
|
|
echo "Identifying platform: $PLATFORM"
|
|
|
|
case $PLATFORM in
|
|
|
|
"i686") DOWNLOADURL="http://builds.cuberite.org/job/MCServer%20Linux%20x86/lastSuccessfulBuild/artifact/MCServer.tar" ;;
|
|
|
|
"x86_64") DOWNLOADURL="http://builds.cuberite.org/job/MCServer%20Linux%20x64/lastSuccessfulBuild/artifact/MCServer.tar" ;;
|
|
|
|
# Assume that all arm devices are a raspi for now.
|
2014-12-23 03:08:23 -05:00
|
|
|
"arm*") DOWNLOADURL="http://builds.cuberite.org/job/MCServer%20Linux%20armhf/lastSuccessfulBuild/artifact/MCServer/MCServer.tar"
|
2014-10-11 16:31:49 -04:00
|
|
|
esac
|
|
|
|
|
|
|
|
echo "Downloading precompiled binaries."
|
|
|
|
curl -s $DOWNLOADURL | tar -xzf -
|
|
|
|
echo "Done."
|
|
|
|
|
|
|
|
echo "MCServer is now installed, run using 'cd MCServer; ./MCServer'."
|