blob: 26cf6e0207ced181ea6e6a786e696b3df0a3dffb (
plain) (
blame)
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
28
|
# New ports collection makefile for: yahtzee
# Date created: Friday 4th July, 1997
# Whom: Joel Sutton <sutton@aardvark.apana.org.au>
# FreeBSD Version: 2.2.1-RELEASE
#
# $FreeBSD$
#
PORTNAME= yahtzee
PORTVERSION= 1.0
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SUNSITE}
MASTER_SITE_SUBDIR= games/strategy
DISTFILES= yahtzee-src.tar.Z
MAINTAINER= jsutton@bbcon.com.au
WRKSRC= ${WRKDIR}/yahtzee
# Distribution does not include an install target. So here it is.
#
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/yahtzee ${PREFIX}/bin/
${MKDIR} -m 0777 ${PREFIX}/lib/yahtzee/
${INSTALL_DATA} -m 0777 /dev/null ${PREFIX}/lib/yahtzee/yahtzee.sco
.include <bsd.port.mk>
|