1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/games/greed/Makefile
2017-07-28 13:31:49 +00:00

31 lines
790 B
Makefile

# Created by: Mark Pulford <mark@kyne.com.au>
# $FreeBSD$
PORTNAME= greed
PORTVERSION= 4.2
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= BSD2CLAUSE
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>