diff options
author | Alex Word <alex_word86@yahoo.com> | 2010-06-14 01:37:16 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-06-14 01:37:16 -0500 |
commit | 01ed7459c0a1c1d812d371693a2d0898953f84ef (patch) | |
tree | 9cdb7d678a4ca33c28c63cfac6cc907ebe6b4884 /games/xmoto/xmoto.SlackBuild | |
parent | b77d3eabc9670c4eb9b3e1b33ee9dfdd4b666625 (diff) | |
download | slackbuilds-01ed7459c0a1c1d812d371693a2d0898953f84ef.tar.gz |
games/xmoto: Added (2D motocross platform game)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'games/xmoto/xmoto.SlackBuild')
-rw-r--r-- | games/xmoto/xmoto.SlackBuild | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/games/xmoto/xmoto.SlackBuild b/games/xmoto/xmoto.SlackBuild new file mode 100644 index 0000000000..fe7b3ebdc7 --- /dev/null +++ b/games/xmoto/xmoto.SlackBuild @@ -0,0 +1,103 @@ +#!/bin/sh + +## Written by hollywoodb (hollywoodb@fastmail.fm) + +## Feel free to use, modify, redistribute this script. +## If you make changes please modify the "Written by" +## so that I don't recieve emails about a script I +## did not write. Thanks. + +# Modified by the SlackBuilds.org project +# Updated by Alex Word <alex_word86@yahoo.com> + +PRGNAM=xmoto +VERSION=0.5.3 +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} # For consistency's sake, use this +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} # Drop the package in /tmp + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG $TMP/$PRGNAM-$VERSION +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +tar xvf $CWD/$PRGNAM-$VERSION-src.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +# Fix for newer libpng. +sed -i \ + -e 's:png_set_gray_1_2_4_to_8:png_set_expand_gray_1_2_4_to_8:' \ + src/image/tim_png.cpp + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +LIBS="-ldl" \ +./configure \ + --prefix=/usr \ + --localstatedir=/var \ + --mandir=/usr/man \ + --localedir=/usr/share/locale \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --with-localesdir=/usr/share/locale \ + --disable-dependency-tracking \ + --enable-threads=posix \ + --with-internal-bz2=0 \ + --with-internal-xdg=1 \ + --with-renderer-sdlGfx=0 \ + --with-renderer-openGl=1 \ + --with-x \ + --with-asian-ttf-file="/usr/share/fonts/TTF/wqy-zenhei.ttc" \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/share/{pixmaps,applications} +install -m 0644 extra/$PRGNAM.xpm $PKG/usr/share/pixmaps/ +install -m 0644 extra/$PRGNAM.desktop $PKG/usr/share/applications/ + +gzip -9 $PKG/usr/man/man?/*.? + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + ABOUT-NLS AUTHORS COPYING INSTALL NEWS README TODO ChangeLog \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |