void-packages/srcpkgs/nethack/template
2015-05-13 17:27:07 +02:00

56 lines
1.5 KiB
Bash

# Template file for 'nethack'
pkgname=nethack
version=3.4.3
revision=4
make_dirs="/var/games/nethack/save 0775 nethack nethack"
system_accounts="$pkgname"
hostmakedepends="ncurses-devel flex"
depends="gzip"
short_desc="Exploring The Mazes of Menace"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="NetHack General Public License"
homepage="http://www.nethack.org/"
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version//.}-src.tgz"
checksum=bb39c3d2a9ee2df4a0c8fdde708fbc63740853a7608d2f4c560b488124866fe4
nocross=yes
post_extract() {
sed -i -e '/COMPRESS/s/compress/gzip/g' \
-e '/COMPRESS_EXTENSION/s/\.Z/.gz/g' include/config.h
}
do_configure() {
sh sys/unix/setup.sh
}
do_build() {
make all dungeon \
CC="$CC" LD="$LD" LDFLAGS="$LDFLAGS" \
LEX=flex WINTTYLIB=-lncurses \
CFLAGS="$CFLAGS -DLINUX -DTIMED_DELAY -DDLB \
-DHACKDIR='\"/var/games/nethack\"' -I../include"
}
do_install() {
vmkdir usr/share/man/man6
vmkdir var/games
make install manpages \
PREFIX=$DESTDIR \
SHELLDIR=$DESTDIR/usr/bin \
MANDIR=$DESTDIR/usr/share/man/man6 \
GAMEDIR=$DESTDIR/usr/lib/nethack \
VARDIR=$DESTDIR/var/games/nethack \
GAMEPERM=0755 \
CHOWN=: CHGRP=: FLEX=lex
mv $DESTDIR/usr/lib/nethack/nhdat $DESTDIR/var/games/nethack
rm $DESTDIR/var/games/nethack/{logfile,perm,record}
sed -i -e 's,^HACKDIR=.*,HACKDIR=/var/games/nethack,' \
-e 's,^HACK=.*,HACK=/usr/lib/nethack/nethack,' \
$DESTDIR/usr/bin/nethack
vdoc doc/Guidebook.txt
vlicense dat/license LICENSE
}