diff options
Diffstat (limited to 'games/mari0/Makefile')
-rw-r--r-- | games/mari0/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/games/mari0/Makefile b/games/mari0/Makefile new file mode 100644 index 000000000000..1135eb1f8140 --- /dev/null +++ b/games/mari0/Makefile @@ -0,0 +1,41 @@ +# Created by: Mahdi Mokhtari <mokhi64@gmail.com> +# $FreeBSD$ + +PORTNAME= mari0 +PORTVERSION= 1.6 +CATEGORIES= games +MASTER_SITES= http://stabyourself.net/dl.php?file=${PORTNAME}-${PORTVERSION:C/\./00/}/ +DISTNAME= ${PORTNAME}-source +DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= mokhi64@gmail.com +COMMENT= Nintendo\'s Super Mario Bros and Valve\'s Portal at same time + +LICENSE= CC-BY-NC-SA-3.0 + +RUN_DEPENDS= love:devel/love + +USES= zip +NO_BUILD= yes +NO_ARCH= yes + +SUB_FILES= mari0 +SUB_LIST+= PORTNAME=${PORTNAME} PORTVERSION=${PORTVERSION} + +PLIST_FILES= bin/mari0 +PORTDOCS= * +PORTDATA= * + +OPTIONS_DEFINE= DOCS + +do-install: + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}_${PORTVERSION}.love \ + ${STAGEDIR}${DATADIR}/ + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +post-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKDIR}/readme.txt ${STAGEDIR}${DOCSDIR}/ + +.include <bsd.port.mk> |