#!/bin/sh CWD=`pwd` VERSION=0.22.0 cat << EOF This is one of those [silly] things that will only build under X... EOF sleep 5 cd /tmp tar xjvf $CWD/gdk-pixbuf-$VERSION.tar.bz2 cd gdk-pixbuf-$VERSION # I won't care about the documentation, if I can get a clean build... (--disable-gtk-doc) CFLAGS="-O2 -m32 -mcpu=v8 -mtune=v9" ./configure \ --prefix=/usr \ --disable-gtk-doc \ sparc-bobware-linux make make install mkdir -p /usr/doc/gdk-pixbuf-$VERSION cp -a AUTHORS COPYING COPYING.LIB INSTALL NEWS README TODO \ /usr/doc/gdk-pixbuf-$VERSION chown -R root.root /usr/doc/gdk-pixbuf-$VERSION chmod 644 /usr/doc/gdk-pixbuf-$VERSION/* mkdir -p /install cat $CWD/slack-desc > /install/slack-desc