123456789101112131415161718192021222324252627282930 |
- #!/bin/sh
- wget http://libregamenight.xyz/pub/data/wesnoth/data.deb
- sudo dpkg -i data.deb
- wget http://libregamenight.xyz/pub/data/wesnoth/music.deb
- sudo dpkg -i music.deb
- if [ $(arch) = "x86_64" ]
- then
- wget http://libregamenight.xyz/pub/data/wesnoth/amd64.deb
- sudo dpkg -i amd64.deb
- if [ $? -eq 1 ]
- then
- sudo apt-get install -f
- sudo dpkg -i amd64.deb
- fi
- else
- wget http://libregamenight.xyz/pub/data/wesnoth/i386.deb
- sudo dpkg -i i386.deb
- if [ $? -eq 1 ]
- then
- sudo apt-get install -f
- sudo dpkg -i i386.deb
- fi
- fi
- echo "Time to reap the profits, now!"
- echo "If everything, went smoothly, The Battle for Wesnoth is now installed-- it should be in your Games menu."
- echo "Cheers!"
|