build_circuslinux() { HERE=`pwd` BUILDDEPS="compiletc.tcz" #DEPS= . ./tiff-sc.inc . ./libmad-sc.inc . ./libmikmod-sc.inc . ./sdl_image-sc.inc . ./sdl_mixer-sc.inc for I in `echo "$BUILDDEPS"`; do su tc -c "tce-load -i "$I"" || su tc -c "tce-load -iw "$I"" done PKGPATH=$1 export LDFLAGS="-L$PKGPATH/lib" export CPPFLAGS="-I$PKGPATH/include" export PATH="$PKGPATH/bin:$PATH" export PKG_CONFIG_PATH="$PKGPATH/lib/pkgconfig:$PKG_CONFIG_PATH" if [ ! -f "$TMPDIR"/tiff ]; then build_tiff "$PKGPATH" || exit 1 fi if [ ! -f "$TMPDIR"/libmad ]; then build_libmad "$PKGPATH" || exit 1 fi if [ ! -f "$TMPDIR"/libmikmod ]; then build_libmikmod "$PKGPATH" || exit 1 fi if [ ! -f "$TMPDIR"/sdl_image ]; then build_sdl_image "$PKGPATH" || exit 1 fi if [ ! -f "$TMPDIR"/sdl_mixer ]; then build_sdl_mixer "$PKGPATH" || exit 1 fi tar xvf circuslinux-1.0.3.tar.xz || exit 1 cd circuslinux-1.0.3 || exit 1 ./configure --prefix="$PKGPATH" || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/circuslinux }