diff options
author | B. Watson <yalhcru@gmail.com> | 2017-04-15 23:35:29 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-22 08:10:38 +0700 |
commit | 99f2d5bf816ab4505216af97606c6b4b6b3b93c7 (patch) | |
tree | df7291f9b50520872d598bc705ef4671f56ee540 /games/asteroidsinfinity/asteroidsinfinity.SlackBuild | |
parent | e2856e589416e4f6285256b500f0767c847b50dc (diff) | |
download | slackbuilds-99f2d5bf816ab4505216af97606c6b4b6b3b93c7.tar.gz |
games/asteroidsinfinity: Added (clone of classic arcade game).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'games/asteroidsinfinity/asteroidsinfinity.SlackBuild')
-rw-r--r-- | games/asteroidsinfinity/asteroidsinfinity.SlackBuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/games/asteroidsinfinity/asteroidsinfinity.SlackBuild b/games/asteroidsinfinity/asteroidsinfinity.SlackBuild new file mode 100644 index 0000000000..8142e9eade --- /dev/null +++ b/games/asteroidsinfinity/asteroidsinfinity.SlackBuild @@ -0,0 +1,60 @@ +#!/bin/sh + +# Slackware build script for asteroidsinfinity + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +PRGNAM=asteroidsinfinity +VERSION=${VERSION:-1.2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +ARCH=noarch + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +SRCNAM="AsteroidsInfinity" + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $SRCNAM +unzip $CWD/$SRCNAM$VERSION.zip +cd $SRCNAM +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +mkdir -p \ + $PKG/usr/share/games/$PRGNAM \ + $PKG/usr/games \ + $PKG/usr/doc/$PRGNAM-$VERSION \ + $PKG/usr/share/applications \ + $PKG/usr/share/pixmaps + +cp -a $SRCNAM.py font/ sounds/ icon.png $PKG/usr/share/games/$PRGNAM +install -oroot -groot -m0755 $CWD/$PRGNAM.sh $PKG/usr/games/$PRGNAM +cp -a *.txt $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +ln -s ../games/$PRGNAM/icon.png $PKG/usr/share/pixmaps/$PRGNAM.png + +# .desktop written for this SlackBuild. +cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop + +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} |