Skip to content

Instantly share code, notes, and snippets.

@kangaroo
Created April 16, 2011 03:03
Show Gist options
  • Save kangaroo/922823 to your computer and use it in GitHub Desktop.
Save kangaroo/922823 to your computer and use it in GitHub Desktop.
#!/bin/sh
rm -rf freetype-2.4.4
if [ ! -e freetype-2.4.4.tar.bz2 ]; then
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.4.4.tar.bz2
fi
bzip2 -dc freetype-2.4.4.tar.bz2 | tar xvf -
cd freetype-2.4.4
./configure --prefix=/opt/moonlight-osx CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" LDFLAGS="$LDFLAGS"
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment