#!/bin/sh # Heavily based on the Slackware 12.2 SlackBuild # Requirements: ladspa, lash, fluidsynth, libmpeg2 # http://www.scummvm.org/ CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-scummvm NAME=scummvm VERSION=0.13.1 ARCH=${ARCH:-i486} BUILD=1hrp SOURCE=http://garr.dl.sourceforge.net/sourceforge/$NAME/$NAME-$VERSION.tar.bz2 if [ ! -e $NAME-$VERSION.tar.bz2 ]; then wget -c $SOURCE fi if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O3 -march=i686 -pipe -fomit-frame-pointer" elif [ "$ARCH" = "athlon64" ]; then SLKCFLAGS="-O2 -march=athlon64 -pipe" elif [ "$ARCH" = "athlonxp" ]; then SLKCFLAGS="-O3 -march=athlon-xp -pipe -fomit-frame-pointer" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar jxvf $CWD/$NAME-$VERSION.tar.bz2 cd $NAME-$VERSION chown -R root:root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --mandir=/usr/man \ read make || exit 1 make install DESTDIR=$PKG mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a $PKG/usr/share/doc/scummvm/* $PKG/usr/doc/$NAME-$VERSION rm -rf $PKG/usr/share/doc strip $PKG/usr/bin/* find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/share/applications cp $CWD/scummvm.desktop $PKG/usr/share/applications mkdir -p /usr/share/scummvm/themes mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild cd $PKG requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi