Last active
February 4, 2021 02:28
-
-
Save flibitijibibo/e97933952cc5a4da9d72482eaf1b8b54 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -ex | |
cd "`dirname "$0"`" | |
# Start with the Kick environment | |
curl -LO https://github.com/flibitijibibo/MonoKickstart/archive/master.zip | |
unzip -j master.zip MonoKickstart-master/precompiled/* | |
rm master.zip kick.bin.osx kick.bin.x86_64.debug System.Xml.Linq.dll | |
mv kick.bin.x86_64 SteelAssaultCs | |
# Move on to fnalibs... | |
curl -O http://fna.flibitijibibo.com/archive/fnalibs.tar.bz2 | |
tar xvfj fnalibs.tar.bz2 lib64/* | |
rm lib64/libtheorafile.so fnalibs.tar.bz2 | |
# MonoPosixHelper, for added robustness | |
curl -O http://flibitijibibo.com/mphlinux.tar.bz2 | |
tar xvfj mphlinux.tar.bz2 | |
rm mphlinux.tar.bz2 | |
mv libMonoPosixHelper.so lib64/ | |
echo Done! Set your launch option to \"echo %command%\; ./SteelAssaultCs\" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment