build_opencore-amr() { HERE=`pwd` BUILDDEPS="compiletc.tcz gettext.tcz intltool.tcz" #DEPS= 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:$LD_LIBRARY_PATH" tar xvf opencore-amr-0.1.3.tar.gz || exit 1 cd opencore-amr-0.1.3 || exit 1 ./configure --prefix="$PKGPATH" --bindir="$PKGPATH"/localbin || exit 1 make make install cd "$PKGPATH" find . | xargs file | grep "executable" | grep ELF | grep "not stripped" | \ cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | grep "not stripped" | \ cut -f 1 -d : | xargs strip -g 2> /dev/null cd "$HERE" touch "$TMPDIR"/opencore-amr }