Skip to content

Instantly share code, notes, and snippets.

@ematta
Last active January 1, 2016 22:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ematta/8211041 to your computer and use it in GitHub Desktop.
Save ematta/8211041 to your computer and use it in GitHub Desktop.
How to install AGS on Fedora
# Install AGS in Fedora 20
# https://github.com/adventuregamestudio/ags/blob/master/debian/README.md
# Change this to whatever you use for home dir apps
cd ~/app
git clone git://github.com/adventuregamestudio/ags.git
cd ags
sudo yum -y install python-devel freetype-devel libvorbis-devel allegro-devel allegro libtheora libtheora-devel dumb-devel dumb
make --directory=Engine
sudo make --directory=Engine install
# You can also get InnoExtractor if your AGS game has an installer
#Change this to whatever you use for home dir cd ~/appapps
cd ~/app
wget http://constexpr.org/innoextract/files/innoextract-1.4-linux.tar.xz
tar xvf innoextract-1.4-linux.tar.xz
mv innoextract-1.4-linux innoextract
ln -s /home/[user]/app/innoextract/innoextract ~/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment