build_unrar() { 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 unrarsrc-4.1.1.tar.gz cd unrar make -f makefile.unix || exit 1 install -v -m755 unrar "$PKGPATH"/localbin cd "$HERE" touch "$TMPDIR"/unrar }