Skip to content

Commit

Permalink
deppack: Add freetype.
Browse files Browse the repository at this point in the history
  • Loading branch information
stump committed Feb 28, 2013
1 parent a9455af commit d680124
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions win32/makedeps-cross.sh
Expand Up @@ -387,6 +387,20 @@ if test ! -f "$PREFIX"/build-stamps/soundtouch-c; then
$RM_RF soundtouch-c.o
fi

# FreeType
FREETYPE="freetype-2.4.11"
if test ! -f "$PREFIX"/build-stamps/freetype; then
download http://download.savannah.gnu.org/releases/freetype/$FREETYPE.tar.bz2
tar jxvf $FREETYPE.tar.bz2
cd $FREETYPE
./configure $COMMON_AUTOCONF_FLAGS
make
make install
cd ..
touch "$PREFIX"/build-stamps/freetype
$RM_RF $FREETYPE
fi

# SDL
SDL="SDL-1.2.15"
if test ! -f "$PREFIX"/build-stamps/sdl; then
Expand Down

0 comments on commit d680124

Please sign in to comment.