Skip to content

Instantly share code, notes, and snippets.

@bfontaine
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bfontaine/cb0cc6032bd86a1d0a8b to your computer and use it in GitHub Desktop.
Save bfontaine/cb0cc6032bd86a1d0a8b to your computer and use it in GitHub Desktop.
Install the original Rogue on Ubuntu
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