123456789101112131415 |
- #!/bin/ksh
- if [ $(arch) == "amd64"
- then
- export PKG_PATH=http://libertybsd.net/pub/LibertyBSD/6.1/packages/amd64
- doas pkg_add -v minetest
- else
- export PKG_PATH=http://libertybsd.net/pub/LibertyBSD/5.9/packages/i386
- doas pkg_add -v minetest
- fi
- echo "Time to reap the profits, now!"
- echo "If you didn't get any errors, Minetest is now installed-- just run the 'minetest' command."
- echo "Cheers!"
|