diff options
author | B. Watson <yalhcru@gmail.com> | 2013-10-27 18:21:13 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-10-27 23:39:06 -0500 |
commit | 634efb36072ad3d877df6af06ce594943dd1f181 (patch) | |
tree | 888054d905a506eb9ccc182c88c53c90bb0ebe13 /games/pom1/pom1.SlackBuild | |
parent | 6cd960587fee2a30250264818df37bc215538124 (diff) | |
download | slackbuilds-634efb36072ad3d877df6af06ce594943dd1f181.tar.gz |
games/pom1: Added (Apple I emulator)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'games/pom1/pom1.SlackBuild')
-rw-r--r-- | games/pom1/pom1.SlackBuild | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/games/pom1/pom1.SlackBuild b/games/pom1/pom1.SlackBuild new file mode 100644 index 0000000000..91cea16a71 --- /dev/null +++ b/games/pom1/pom1.SlackBuild @@ -0,0 +1,100 @@ +#!/bin/sh + +# Slackware build script for pom1 + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ +# for details. + +PRGNAM=pom1 +VERSION=${VERSION:-1.0.0} +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} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/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 +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 {} \; + +sed -i 's/Emulator;/&System;/' src/$PRGNAM.desktop.in + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG + +mv $PKG/usr/share/icons $PKG/usr/share/pixmaps +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION + +# Why is there a fricken --docdir option when every configure +# script ignores it?! +mv $PKG/usr/share/doc/$PRGNAM/* $PKG/usr/doc/$PRGNAM-$VERSION +rm -rf $PKG/usr/share/doc + +# Icon created by Creative Nerds, downloaded from: +# http://www.iconarchive.com/show/wooden-social-icons-by-creativenerds/apple-icon.html +mkdir -p $PKG/usr/share/pixmaps +cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png + +# I prefer not to clutter /usr/bin with binaries you're not supposed +# to actually ever run, so: +mkdir -p $PKG/usr/libexec +mv $PKG/usr/bin/$PRGNAM-$VERSION $PKG/usr/libexec +sed -i "s,^$PRGNAM-$VERSION,/usr/libexec/&," $PKG/usr/bin/$PRGNAM + +cp -a COPYING $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 $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |