parabola-install.sh 459 B

12345678910111213141516
  1. #!/bin/sh
  2. sudo pacman -S widelands
  3. if [ uname -a | grep "x86_64" ]
  4. then
  5. wget http://data.libregamenight.xyz/pub/bzflag/amd64.pkg.tar.xz
  6. sudo pacman -U amd64.pkg.tar.xz
  7. else
  8. wget http://data.libregamenight.xyz/pub/bzflag/i386.pkg.tar.xz
  9. sudo pacman -U i386.pkg.tar.xz
  10. fi
  11. echo "Time to reap the profits, now!"
  12. echo "If you didn't get any errors, Bzflag v2.4.2 is now installed-- just run the 'bzflag' command."
  13. echo "Cheers!"