mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
8e59eeb00d
- Bump portrevision as a file was packaged with wrong group
31 lines
798 B
Makefile
31 lines
798 B
Makefile
# Created by: Mark Pulford <mark@kyne.com.au>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= greed
|
|
PORTVERSION= 3.10
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://catb.org/~esr/greed/ CENKES
|
|
PKGNAMESUFFIX= -game
|
|
|
|
MAINTAINER= culot@FreeBSD.org
|
|
COMMENT= Text puzzle game with the aim of clearing the game field
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
SCOREFILE?= /var/games/greed.hs
|
|
CFLAGS+= -DSCOREFILE=\"${SCOREFILE}\" -DNOTBSD -DRELEASE=\"${PORTVERSION}\"
|
|
LDFLAGS+= -lcurses
|
|
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>
|