mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b67a403ec4
a minsweeper-style game for text-mode terminals. Features include boards up to 1024x1024 and saving and loading the boards. PR: 12805 Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
33 lines
724 B
Makefile
33 lines
724 B
Makefile
# New ports collection makefile for: freesweep
|
|
# Version required: 0.86
|
|
# Date created: 25 July 1999
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= freesweep-0.86
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.upl.cs.wisc.edu/~hartmann/sweep/
|
|
|
|
MAINTAINER= andy@icc.surw.chel.su
|
|
|
|
ALL_TARGET=
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
MAN6= freesweep.6
|
|
|
|
do-install:
|
|
@ ${INSTALL_PROGRAM} ${WRKSRC}/freesweep ${PREFIX}/bin
|
|
@ ${INSTALL_MAN} ${WRKSRC}/freesweep.6 ${PREFIX}/man/man6
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@ ${MKDIR} ${PREFIX}/share/doc/freesweep
|
|
@ ${INSTALL_DATA} ${WRKSRC}/CHANGES ${PREFIX}/share/doc/freesweep
|
|
@ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/freesweep
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|