2bcf302d77
Goal of the game is to clear entire field by matching pairs of neighbouring (adjacent or on the same line/column without any other numbers in between) numbers, which must be either equal, or their sum must be equal to strike out sum. WWW: https://github.com/Penguinum/xtgyoretsu-forked/ WWW: http://saahriktu.org/games.html
31 lines
590 B
Makefile
31 lines
590 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xtgyoretsu
|
|
PORTVERSION= git20140822
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Extended ncurses version of "Renshu-cho gyoretsu"
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Penguinum
|
|
GH_PROJECT= ${PORTNAME}-forked
|
|
GH_TAGNAME= ${GH_COMMIT}
|
|
GH_COMMIT= d052143
|
|
|
|
USES= ncurses
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/Readme ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|