Created
November 17, 2013 05:57
-
-
Save takaokouji/7509849 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
# system update | |
yum -y update | |
yum -y install SDL-devel SDL_image-devel SDL_mixer-devel SDL_ttf-devel ipa-gothic-fonts.noarch ipa-mincho-fonts.noarch ipa-pgothic-fonts.noarch ipa-pmincho-fonts.noarch | |
# SGE | |
if [ ! -e /usr/lib/libSGE.so ]; then | |
cd /usr/local/src | |
if [ ! -e sge030809 ]; then | |
wget http://www.digitalfanatics.org/cal/sge/files/sge030809.tar.gz | |
tar xvzf sge030809.tar.gz | |
fi | |
cd sge030809 | |
make USE_FT=n | |
make USE_FT=n install | |
fi | |
# Smalruby | |
gem install smalruby --no-ri --no-rdoc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment