Last active
January 1, 2016 22:39
-
-
Save ematta/8211041 to your computer and use it in GitHub Desktop.
How to install AGS on Fedora
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
# 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