build_slang() { HERE=`pwd` BUILDDEPS="compiletc.tcz" #DEPS= . ./pcre-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/localbin:$PATH" export PKG_CONFIG_PATH="$PKGPATH/lib/pkgconfig:$PKG_CONFIG_PATH" if [ ! -f "$TMPDIR"/pcre ]; then build_pcre "$PKGPATH" || exit 1 fi tar xvf slang-2.2.4.tar.xz cd slang-2.2.4 ./configure --prefix="$PKGPATH" --bindir="$PKGPATH"/localbin || exit 1 make || exit 1 make install-all || exit 1 chmod -v 755 "$PKGPATH"/lib/libslang.so.2.2.4 \ "$PKGPATH"/lib/slang/v2/modules/*.so || exit 1 cd "$HERE" touch "$TMPDIR"/slang }