blob: 36b3d5358ea1f1418f5282f71a115db8af97a5fb (
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
29
|
# New ports collection makefile for: pyWeather
# Date created: 18 Dec 1999
# Whom: Will Andrews <andrews@technologist.com>
#
# $FreeBSD$
#
PORTNAME= pyWeather
PORTVERSION= 0.1b
CATEGORIES= astro python
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= will
DISTNAME= pyWeather
MAINTAINER= ports@FreeBSD.org
RUN_DEPENDS= ${PYTHON}:${PORTSDIR}/lang/python
NO_BUILD= yes
PYTHON?= ${LOCALBASE}/bin/python
pre-install:
@${PERL} -pi -e "s:/usr/bin/python:${PYTHON}:g ; \
s:pyWeather.py:pyWeather:g" ${WRKSRC}/pyWeather.py
do-install:
@${INSTALL_SCRIPT} ${WRKSRC}/pyWeather.py ${PREFIX}/bin/pyWeather
.include <bsd.port.mk>
|