#!/bin/sh
CWD=`pwd` 
cd /tmp
tar xzvf $CWD/gnome-utils-1.2.0.tar.gz
cd gnome-utils-1.2.0
./configure --prefix=/usr \
	    --with-catgets \
	    --with-gnome=/usr \
	    --with-ncurses=/usr \
	    --enable-guname-capplet \
            --localstatedir=/var/state \
            i386-slackware-linux
make
make install
mkdir -p /usr/doc/gnome-utils-1.2.0
cp -a AUTHORS COPYING ChangeLog NEWS README /usr/doc/gnome-utils-1.2.0
chown -R root.root /usr/doc/gnome-utils-1.2.0

cat << EOF

Since we couldn't do CFLAGS=-O2, strip it.


EOF
