diff options
Diffstat (limited to 'games')
-rw-r--r-- | games/advancemame/README | 5 | ||||
-rw-r--r-- | games/advancemame/advancemame.SlackBuild | 83 | ||||
-rw-r--r-- | games/advancemame/advancemame.info | 8 | ||||
-rw-r--r-- | games/advancemame/slack-desc | 19 |
4 files changed, 115 insertions, 0 deletions
diff --git a/games/advancemame/README b/games/advancemame/README new file mode 100644 index 0000000000..630ee8e007 --- /dev/null +++ b/games/advancemame/README @@ -0,0 +1,5 @@ +Advancemame (Multi Arcade Machine Emulator) + +Advancemame is a derivative of the well known "mame" emulator. +It works easily on linux, with joystick support, fullscreen +support, and more "out of the box." diff --git a/games/advancemame/advancemame.SlackBuild b/games/advancemame/advancemame.SlackBuild new file mode 100644 index 0000000000..1f0810ff3e --- /dev/null +++ b/games/advancemame/advancemame.SlackBuild @@ -0,0 +1,83 @@ +#!/bin/sh + +# Slackware build script for "advancemame" + +# Written by seb (sebastien.serre33@laposte.net) + +PRGNAM=advancemame +VERSION=0.106.0 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +DOC="BUILD COPYING HISTORY RELEASE README $CWD/$PRGNAM.SlackBuild" + +set -e + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --bindir=/usr/games \ + --mandir=/usr/man + +make + +/usr/bin/ginstall -d -m 755 $PKG/usr/games +/usr/bin/ginstall -d -m 755 $PKG/usr/share/advance +/usr/bin/ginstall -d -m 755 $PKG/usr/doc/advance-$VERSION +/usr/bin/ginstall -d -m 755 $PKG/usr/man/man1 +/usr/bin/ginstall -d -m 755 $PKG/usr/share/advance/{rom,sample,artwork,image,crc} +/usr/bin/ginstall -m 755 obj/mame/linux/blend/advmame $PKG/usr/games +/usr/bin/ginstall -m 755 obj/cfg/linux/blend/advcfg $PKG/usr/games +/usr/bin/ginstall -m 755 obj/v/linux/blend/advv $PKG/usr/games +/usr/bin/ginstall -m 755 obj/s/linux/blend/advs $PKG/usr/games +/usr/bin/ginstall -m 755 obj/k/linux/blend/advk $PKG/usr/games +/usr/bin/ginstall -m 755 obj/j/linux/blend/advj $PKG/usr/games +/usr/bin/ginstall -m 755 obj/m/linux/blend/advm $PKG/usr/games +/usr/bin/ginstall -m 644 ./support/*.dat $PKG/usr/share/advance +/usr/bin/ginstall -m 644 ./doc/{*.html,*.txt} $PKG/usr/doc/advance-$VERSION +/usr/bin/ginstall -m 644 $DOC $PKG/usr/doc/advance-$VERSION +/usr/bin/ginstall -m 644 ./doc/*.1 $PKG/usr/man/man1 + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : |xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : |xargs strip --strip-unneeded 2> /dev/null +) + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/games/advancemame/advancemame.info b/games/advancemame/advancemame.info new file mode 100644 index 0000000000..5aab288b3f --- /dev/null +++ b/games/advancemame/advancemame.info @@ -0,0 +1,8 @@ +PRGNAM="advancemame" +VERSION="0.106.0" +HOMEPAGE="http://advancemame.sourceforge.net" +DOWNLOAD="http://prdownloads.sourceforge.net/advancemame/advancemame-0.106.0.tar.gz?download" +MD5SUM="aa097a4a9046124e17aa83a215e454ea" +MAINTAINER="seb" +EMAIL="sebastien.serre33@laposte.net" +APPROVED="David Somero" diff --git a/games/advancemame/slack-desc b/games/advancemame/slack-desc new file mode 100644 index 0000000000..e53dff5156 --- /dev/null +++ b/games/advancemame/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' on +# the right side marks the last column you can put a character in. You must make +# exactly 11 lines for the formatting to be correct. It's also customary to +# leave one space after the ':'. + + |-----handy-ruler--------------------------------------------------| +advancemame: advancemame (An arcade game emulator) +advancemame: +advancemame: Advancemame is a derivative of the well known "mame" emulator. +advancemame: It works easily on linux, with joystick support, fullscreen +advancemame: support, and more "out of the box." +advancemame: +advancemame: Homepage: http://advancemame.sourceforge.net/ +advancemame: +advancemame: +advancemame: +advancemame: |