build_sqlite3() { HERE=`pwd` NAME=sqlite3 VER=5.09 BUILDDEPS="compiletc.tcz automake.tcz autoconf.tcz" #DEPS= if [ ! -f sqlite-autoconf-3070900.tar.gz ]; then wget http://www.sqlite.org/sqlite-autoconf-3070900.tar.gz fi 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" tar xvf sqlite-autoconf-3070900.tar.gz || exit 1 cd sqlite-autoconf-3070900 || exit 1 ./configure --prefix="$PKGPATH" --disable-static|| exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/sqlite3 }