blob: 07a9f69e0878c1c03c43f73e43fa20c5d83e2148 (
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
|
# New ports collection makefile for: PySol
# Version required: 2.00
# Date created: 11 September 1998
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
# $Id: Makefile,v 1.6 1998/10/19 11:00:24 tg Exp $
#
DISTNAME= pysol-2.00
CATEGORIES= games
MASTER_SITES= http://wildsau.idv.uni-linz.ac.at/mfx/download/ \
http://www.freebsd.org/~tg/
MAINTAINER= tg@FreeBSD.ORG
RUN_DEPENDS= python:${PORTSDIR}/lang/python
do-build:
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/pysol.py ${PREFIX}/bin/pysol
@${MKDIR} ${PREFIX}/share/pysol
(cd ${WRKSRC}/data; tar cf - *) | \
(cd ${PREFIX}/share/pysol; tar xf -)
.include <bsd.port.mk>
|