blob: ef4141c58d7cdd7203939a94f9992cedb91082fa (
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
|
# Maintainer: Drew DeVault <sir@cmpwn.com>
# Based on the Arch Linux package
pkgname=nethack
pkgver=3.6.2
pkgrel=0
pkgdesc="A single player dungeon exploration game"
url="https://www.nethack.org/index.html"
arch="all"
license="NGPL"
makedepends="ncurses-dev linux-headers bison flex"
subpackages="$pkgname-doc"
source="http://downloads.sourceforge.net/$pkgname/$pkgname-${pkgver//.}-src.tgz"
builddir="$srcdir/$pkgname-$pkgver"
options="suid"
prepare() {
cd "$builddir"
# Fix nonstandard cp usage
sed -e 's/cp -n/cp/g' -i sys/unix/hints/linux
# Fix glibc issue
sed -e 's/#define _GNU_SOURCE//g' -i include/config1.h
# Configuration stuff
sed -e 's|^/\* \(#define LINUX\) \*/|\1|' \
-e 's|^/\* \(#define TIMED_DELAY\) \*/|\1|' \
-i include/unixconf.h
# we are setting up for setgid games, so modify all necessary permissions
# to allow full access for groups
sed -e '/^HACKDIR/ s|/games/lib/\$(GAME)dir|/var/games/nethack/|' \
-e '/^SHELLDIR/ s|/games|/usr/bin|' \
-e '/^VARDIRPERM/ s|0755|0775|' \
-e '/^VARFILEPERM/ s|0600|0664|' \
-e '/^GAMEPERM/ s|0755|02755|' \
-e 's|\(DSYSCF_FILE=\)\\"[^"]*\\"|\1\\"/var/games/nethack/sysconf\\"|' \
-e 's|\(DHACKDIR=\)\\"[^"]*\\"|\1\\"/var/games/nethack/\\"|' \
-i sys/unix/hints/linux
sed -e 's|^#GAMEUID.*|GAMEUID = root|' \
-e 's|^#GAMEGRP.*|GAMEGRP = games|' \
-e '/^FILEPERM\s*=/ s|0644|0664|' \
-e '/^DIRPERM\s*=/ s|0755|0775|' \
-i sys/unix/Makefile.top
sed -e "/^MANDIR\s*=/s|/usr/man/man6|$pkgdir/usr/share/man/man6|" \
-i sys/unix/Makefile.doc
}
build() {
cd "$builddir"/sys/unix
sh setup.sh hints/linux
cd "$builddir"
make
}
check() {
cd "$builddir"
NETHACKDIR=/tmp ./src/nethack --version
}
package() {
cd "$builddir"
install -dm755 $pkgdir/usr/share/man/man6
install -dm755 $pkgdir/usr/share/doc/nethack
install -dm775 $pkgdir/var/games/
make PREFIX=$pkgdir -j1 install manpages # Multi-threaded builds fail.
sed -e "s|HACKDIR=$pkgdir/|HACKDIR=/|" \
-e 's|HACK=$HACKDIR|HACK=/usr/lib/nethack|' \
-i $pkgdir/usr/bin/nethack
install -dm755 $pkgdir/usr/lib/nethack
mv $pkgdir/var/games/nethack/nethack $pkgdir/usr/lib/nethack/
mv $pkgdir/var/games/nethack/recover $pkgdir/usr/lib/nethack/
chown -R root:games $pkgdir/var/games/
chown root:games $pkgdir/usr/lib/nethack/nethack
install -Dm644 doc/Guidebook.txt $pkgdir/usr/share/doc/nethack/Guidebook.txt
}
sha512sums="e865f21298ffdf67301b5b6ca91f2e762011cc35b55f80603fff014b48f9724d67671168a898abb2171879906a65564d8eb59d272bb5a9f8bf957f074e3c105e nethack-362-src.tgz"
|