build_hicolor-icon-theme() { HERE=`pwd` NAME=hicolor-icon-theme VER=0.12 BUILDDEPS="compiletc.tcz" #DEPS= if [ ! -f hicolor-icon-theme-0.12.tar.gz ]; then wget http://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.12.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/localbin:$PATH" export PKG_CONFIG_PATH="$PKGPATH/lib/pkgconfig:$PKG_CONFIG_PATH" ldconfig tar xvf hicolor-icon-theme-0.12.tar.gz cd hicolor-icon-theme-0.12 ./configure --prefix="$PKGPATH" --bindir="$PKGPATH"/localbin || exit 1 make || exit 1 make install || exit 1 cd "$HERE" touch "$TMPDIR"/hicolor-icon-theme }