#!/bin/sh # Heavily based on the Slackware 11.0 SlackBuild # Requirements: ladspa, lash, fluidsynth, mpeg2dec # http://www.scummvm.org/ CWD=`pwd` if ["$TMP" = ""]; then TMP=/tmp fi PKG=$TMP/package-scummvm NAME=scummvm VERSION=0.10.0 ARCH=${ARCH:-i486} BUILD=hrp 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 make 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 $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/$NAME-$VERSION rm -rf $PKG fi