blob: 499e336e125a90f05f2c43851259300d995b9a55 (
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
|
# $NetBSD: Makefile,v 1.5 2001/02/16 15:11:04 wiz Exp $
#
DISTNAME= xpipeman-1.5
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
do-install:
${INSTALL} -o bin -g games -m 2755 ${WRKSRC}/xpipeman \
${X11PREFIX}/bin/xpipeman
${INSTALL_MAN} ${WRKSRC}/xpipeman.man ${X11PREFIX}/man/man6/xpipeman.6
${INSTALL} -d -o bin -g games -m 0775 ${X11PREFIX}/share/xpipeman
if [ ! -e /var/games/xpipescores ]; then \
${INSTALL} -o bin -g games -m 0664 ${WRKSRC}/xpipescores /var/games ; \
fi
.include "../../mk/bsd.pkg.mk"
|