mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
093bc80852
Generates mazes on a text terminal and lets you traverse them
28 lines
538 B
Makefile
28 lines
538 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: textmaze
|
|
# Date created: Sep 8, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= textmaze
|
|
PORTVERSION= 0.5
|
|
CATEGORIES= games perl5
|
|
MASTER_SITES= http://www.robobunny.com/projects/textmaze/
|
|
DISTNAME= ${PORTNAME}_v${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
USE_PERL5= yes
|
|
WRKSRC= ${WRKDIR}/TextMaze
|
|
NO_BUILD= yes
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e "s,/usr/local/bin/perl,${PERL},g" ${WRKSRC}/textmaze
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/textmaze ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|