2011-11-30 20:01:00 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2011-12-01 17:41:27 +01:00
|
|
|
. environment.sh
|
2011-11-30 20:01:00 +01:00
|
|
|
|
2011-12-06 11:42:37 +01:00
|
|
|
if [ ! -f $CACHEROOT/SDL_ttf-$SDLTTF_VERSION.tar.gz ]; then
|
|
|
|
curl -L http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-$SDLTTF_VERSION.tar.gz > $CACHEROOT/SDL_ttf-$SDLTTF_VERSION.tar.gz
|
|
|
|
tar xzf $CACHEROOT/SDL_ttf-$SDLTTF_VERSION.tar.gz
|
2011-11-30 20:01:00 +01:00
|
|
|
fi
|
|
|
|
|
2012-02-25 15:51:34 +01:00
|
|
|
if [ ! -f SDL_ttf-$SDLTTF_VERSION/.libs/libSDL_ttf.a ]; then
|
|
|
|
pushd SDL_ttf-$SDLTTF_VERSION
|
|
|
|
rm libSDL_ttf.la
|
|
|
|
./configure --prefix=/usr/local/iphone \
|
|
|
|
--host=arm-apple-darwin \
|
|
|
|
--enable-static=yes \
|
|
|
|
--enable-shared=no \
|
|
|
|
--without-x \
|
|
|
|
CC="$ARM_CC" AR="$ARM_AR" \
|
|
|
|
LDFLAGS="$ARM_LDFLAGS" CFLAGS="$ARM_CFLAGS"
|
|
|
|
make clean
|
|
|
|
make libSDL_ttf.la
|
|
|
|
popd
|
2011-11-30 20:01:00 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2011-12-01 17:41:27 +01:00
|
|
|
# copy to buildroot
|
2012-02-25 15:51:34 +01:00
|
|
|
cp SDL_ttf-$SDLTTF_VERSION/.libs/libSDL_ttf.a $BUILDROOT/lib/libSDL_ttf.a
|
|
|
|
cp -a SDL_ttf-$SDLTTF_VERSION/SDL_ttf.h $BUILDROOT/include
|