build_pixman() { HERE=`pwd` NAME=pixman VER=0.24.0 BUILDEPS="compiletc.tcz Xorg-7.6-dev.tcz" #DEPS= if [ ! -f pixman-0.24.0.tar.gz ]; then wget http://cairographics.org/releases/pixman-0.24.0.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 pixman-0.24.0.tar.gz cd pixman-0.24.0 ./configure --prefix="$PKGPATH" || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/pixman }