build_rsync() { HERE=`pwd` BUILDDEPS="compiletc.tcz perl5.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" tar xvf rsync-3.0.9.tar.xz || exit 1 cd rsync-3.0.9 || exit 1 ./configure --prefix="$PKGPATH" --with-included-popt || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/rsync }