blob: 165c3aaedf693123280fa84b183647c95c494448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $NetBSD: Makefile,v 1.12 2006/02/05 23:09:25 joerg Exp $
#
DISTNAME= xpipeman-1.5
PKGREVISION= 1
CATEGORIES= games x11
MASTER_SITES= http://www.spinne.com/x/games/xpipeman/
MAINTAINER= root@garbled.net
HOMEPAGE= http://www.spinne.com/x/games/xpipeman/
COMMENT= Connect the pipes to contain the water flow game for X11
WRKSRC= ${WRKDIR}/xpipeman
USE_IMAKE= yes
INSTALLATION_DIRS= bin man/man6
do-install:
${INSTALL} -o bin -g games -m 2755 ${WRKSRC}/xpipeman \
${PREFIX}/bin/xpipeman
${INSTALL_MAN} ${WRKSRC}/xpipeman.man ${PREFIX}/man/man6/xpipeman.6
${INSTALL} -d -o bin -g games -m 0775 ${PREFIX}/share/xpipeman
if [ ! -r /var/games/xpipescores ]; then \
${INSTALL} -o bin -g games -m 0664 ${WRKSRC}/xpipescores /var/games ; \
fi
.include "../../mk/bsd.pkg.mk"
|