Last active
August 29, 2015 14:09
-
-
Save bfontaine/cb0cc6032bd86a1d0a8b to your computer and use it in GitHub Desktop.
Install the original Rogue on Ubuntu
This file contains hidden or 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
echo "==> retrieving the source" | |
wget http://rogue.rogueforge.net/files/rogue5.4/rogue5.4.4-src.tar.gz | |
echo "==> unpacking" | |
tar xzf rogue5.4.4-src.tar.gz && cd rogue5.4.4 | |
echo "==> configuring" | |
./configure --disable-debug --disable-dependency-tracking | |
echo "==> patching" | |
sed -i'' s%rogue.scr%$HOME/.rogue.scr% config.h | |
echo "==> installing (needs sudo)" | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment