parabola-install.sh 554 B

12345678910111213141516171819
  1. !/bin/sh
  2. if [ $(arch) = "x86_64" ]
  3. then
  4. wget https://libregamenight.xyz/pub/annexctw/data/amd64.tar.gz
  5. tar -zxvf amd64.tar.gz
  6. cd annex-amd64
  7. else
  8. wget https://libregamenight.xyz/pub/annexctw/data/i386.tar.gz
  9. tar -zxvf i386.tar.gz
  10. cd annex-i386
  11. fi
  12. echo "Time to reap the profits, now!"
  13. echo "If everything, went smoothly, you're now in the directory with the binaries."
  14. echo "Run annex when you're ready."
  15. echo "(With a period, slash, and then file-name-- in this case, './annex')"
  16. echo "Cheers!"