build_flac() { HERE=`pwd` NAME=libvorbis VER=1.3.2 BUILDDEPS="compiletc.tcz Xorg-7.6-dev.tcz Xorg-7.6-lib.tcz" #DEPS= . ./libogg-sc.inc || exit 1 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"/libogg ]; then build_libogg "$PKGPATH" || exit 1 fi tar xvf flac-1.2.1.tar.xz || exit 1 cd flac-1.2.1 || exit 1 patch -p1 < ../flac-1.2.1-gcc-4.3-includes.patch ./configure --prefix="$PKGPATH" --bindir="$PKGPATH"/localbin --enable-shared || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/flac }