blob: 5f786bccbee10dcd5ec4b9f0a5a3665e1c9504de (
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
|
#
# $NetBSD: Makefile,v 1.1 1998/08/27 13:11:04 garbled Exp $
#
DISTNAME= nethack-3.2.2
PKGNAME= nethack-tty-3.2.2
CATEGORIES= games
MASTER_SITES= # empty
MAINTAINER= root@garbled.net
HOMEPAGE= http://www.win.tue.nl/games/roguelike/nethack/
DEPENDS+= nethack-lib-3.2.2:../nethack-lib
WRKSRC= ../nethack-lib/work/${DISTNAME}
NO_CHECKSUM= yes
ALL_TARGET= nethack
INSTALL_TARGET= binfiles
MAKE_ENV+= GTYPE=-tty
do-fetch: #empty
do-extract:
@mkdir work
(cd ../nethack-lib && make clean)
(cd ../nethack-lib && make configure)
.include "../../mk/bsd.pkg.mk"
|