diff options
author | okazaki <okazaki@FreeBSD.org> | 2001-08-16 10:53:11 +0000 |
---|---|---|
committer | okazaki <okazaki@FreeBSD.org> | 2001-08-16 10:53:11 +0000 |
commit | e179d3e341d5acd42e18d401ba00cc75f4af5483 (patch) | |
tree | 1389587a9af1a0af97e6b567a18550c09f9b6339 /devel/py-unit/Makefile | |
parent | 3f10be3be8a8fdd58058a22c0c29490241f57824 (diff) | |
download | FreeBSD-ports-e179d3e341d5acd42e18d401ba00cc75f4af5483.zip FreeBSD-ports-e179d3e341d5acd42e18d401ba00cc75f4af5483.tar.gz |
Add py-unit 1.4.1, testing framework for Python.
PR: 29734
Submitted by: Shell Hung <shell@shellhung.org>
Diffstat (limited to 'devel/py-unit/Makefile')
-rw-r--r-- | devel/py-unit/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/devel/py-unit/Makefile b/devel/py-unit/Makefile new file mode 100644 index 0000000..3532811 --- /dev/null +++ b/devel/py-unit/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: py-unit +# Date created: Aug 16, 2001 +# Whom: Shell Hung <shell@shellhung.org> +# +# $FreeBSD$ +# + +PORTNAME= unit +PORTVERSION= 1.4.1 +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= pyunit +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= pyunit-${PORTVERSION} + +MAINTAINER= shell@shellhung.org + +USE_PYTHON= yes + +SETUP_CMD= cd ${WRKSRC} && ${SETENV} \ + ${MAKE_ENV} ${PYTHON_CMD} setup.py + +do-build: + @${SETUP_CMD} build + +do-install: + @${SETUP_CMD} install + +.include <bsd.port.mk> |