summaryrefslogtreecommitdiffstats
path: root/games/fortune-farscape/fortune-farscape.SlackBuild
blob: ce16787d16011beb9a8b2273080243901edbc52b (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
#!/bin/sh

# Slackware build script for fortune-farscape

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

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

# 20191224 bkw: I'm my own upstream on this one. The fortune file was
# made by scraping wikiquotes, then hand-massaging the data into the
# format fortune(6) wants and fixing a few typos/etc. Also added a
# few quotes from episodes that didn't have any quotes on wikiquote,
# specifically "Beware of Dog", "Incubator", "I-Yensch, You-Yensch",
# "Twice Shy".

PRGNAM=fortune-farscape
VERSION=${VERSION:-20191224}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
ARCH=noarch

CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

set -e

FDIR=$PKG/usr/share/games/fortunes
rm -rf $PKG
mkdir -p $TMP $FDIR $OUTPUT
cd $FDIR
xzcat $CWD/$PRGNAM-$VERSION.xz > farscape
strfile farscape

mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

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.${PKGTYPE:-tgz}