freebsd-ports/games/greed/Makefile
John Marino 096d262979 games/greed: document ncurses requirement (USES+=ncurses)
Also link with libncurses, not libcurses.

approved by:	infrastructure blanket
2016-02-04 21:27:38 +00:00

31 lines
790 B
Makefile

# Created by: Mark Pulford <mark@kyne.com.au>
# $FreeBSD$
PORTNAME= greed
PORTVERSION= 4.1
CATEGORIES= games
MASTER_SITES= http://catb.org/~esr/greed/
PKGNAMESUFFIX= -game
MAINTAINER= culot@FreeBSD.org
COMMENT= Text puzzle game with the aim of clearing the game field
LICENSE= BSD3CLAUSE
USES= ncurses
SCOREFILE?= /var/games/greed.hs
CFLAGS+= -DSCOREFILE=\"${SCOREFILE}\" -DNOTBSD -DRELEASE=\"${PORTVERSION}\"
LDFLAGS+= -lncurses
PLIST_SUB+= SCOREFILE=${SCOREFILE}
do-build:
(cd ${WRKSRC} && ${CC} ${CFLAGS} -o greed greed.c ${LDFLAGS})
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/greed ${STAGEDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/greed.6 ${STAGEDIR}${MAN6PREFIX}/man/man6/
@${MKDIR} ${STAGEDIR}${SCOREFILE:H}
${TOUCH} ${STAGEDIR}${SCOREFILE}.sample
.include <bsd.port.mk>