Skip to content

Instantly share code, notes, and snippets.

@takaokouji
Created November 17, 2013 05:57
Show Gist options
  • Save takaokouji/7509849 to your computer and use it in GitHub Desktop.
Save takaokouji/7509849 to your computer and use it in GitHub Desktop.
#!/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