build_libxml2() { HERE=`pwd` BUILDEPS="compiletc.tcz expat2.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/localbin:$PATH" export PKG_CONFIG_PATH="$PKGPATH/lib/pkgconfig:$PKG_CONFIG_PATH" tar xvf libxml2-2.8.0.tar.xz || exit 1 cd libxml2-2.8.0 || exit 1 ./configure --prefix="$PKGPATH" --with-threads --with-history || exit 1 make || exit 1 make install DESTDIR="$HERE"/pkg || exit 1 cd "$HERE" touch "$TMPDIR"/libxml2 }