build_mpg123() { HERE=`pwd` BUILDDEPS="compiletc.tcz" #DEPS= . ./glib2-sc.inc || exit 1 . ./alsa-lib-sc.inc || exit 1 . ./sdl-sc.inc || exit 1 . ./jack-sc.inc || exit 1 . ./libtool-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" export LD_LIBRARY_PATH="$PKGPATH/lib" if [ ! -f "$TMPDIR"/glib2 ]; then build_glib2 "$PKGPATH" || exit 1 fi if [ ! -f "$TMPDIR"/alsa-lib ]; then build_alsa-lib "$PKGPATH" || exit 1 fi if [ ! -f "$TMPDIR"/sdl ]; then build_sdl "$PKGPATH" || exit 1 fi if [ ! -f "$TMPDIR"/jack ]; then build_jack "$PKGPATH" || exit 1 fi if [ ! -f "$TMPDIR"/libtool ]; then build_libtool "$PKGPATH" || exit 1 fi tar xvf mpg123-1.14.4.tar.xz || exit 1 cd mpg123-1.14.4 || exit 1 ./configure --prefix="$PKGPATH" --bindir="$PKGPATH"/localbin --enable-int-quality --with-module-suffix=.so \ --with-audio="alsa oss sdl jack" || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/mpg123 }