summaryrefslogtreecommitdiffstats
path: root/games/notpacman/notpacman.SlackBuild
blob: cd8657ec6cb3f0007c6067422dc0d73e965b3a8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/bin/sh

# Slackware build script for notpacman

# Written by B. Watson (yalhcru@gmail.com)

# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.

# This file could almost serve as a template for games that use LÖVE, feel
# free to adapt it. If so, pay special attention to the #!/usr/bin/env stuff:
# you'll need the correct love binary... or, if the .love file already has
# the shebang line, don't add another in your build. It may be helpful to know
# that the unzip command can handle zipfiles with extra junk like a shebang
# at the beginning (it'll print a warning, is all).

PRGNAM=notpacman
VERSION=${VERSION:-1.0.4}
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

# For those keeping score at home, *.love files are actually zip files
# full of lua script code, graphics, and such. Even better, they can be
# zip files with a shebang line prepended (so they can be +x and run like
# any other script).
ZIPFILE=$PRGNAM-source.zip
PAYLOAD=not_pacman.love

# if file downloaded with wget or anything that doesn't respect
# content-disposition:
DLNAME="dl.php?file=notpacman-1004%2Fnotpacman-source.zip"
[ -e "$DLNAME" ] && mv "$DLNAME" $ZIPFILE

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
mkdir -p $PRGNAM-$VERSION
cd $PRGNAM-$VERSION
unzip $CWD/$ZIPFILE

# no chown/find boilerplate here, files will be installed with explicit perms
# or with cat + redirection.
mkdir -p $PKG/usr/games
echo '#!/usr/bin/env love-0.7.2' > $PKG/usr/games/$PRGNAM
cat $PAYLOAD >> $PKG/usr/games/$PRGNAM
chmod 755 $PKG/usr/games/$PRGNAM

# .desktop written for this slackbuild
mkdir -p $PKG/usr/share/applications
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop

# use pac-man himself for the icon
mkdir -p $PKG/usr/share/pixmaps
unzip -p $PAYLOAD graphics/pacmanman.png > $PKG/usr/share/pixmaps/$PRGNAM.png

# The included README is useless (I promise). The license isn't.
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
unzip -a -p $PAYLOAD LICENSE.txt > $PKG/usr/doc/$PRGNAM-$VERSION/LICENSE.txt
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}