diff options
author | vanilla <vanilla@FreeBSD.org> | 2001-03-15 07:47:29 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2001-03-15 07:47:29 +0800 |
commit | d89ab9047e1450843b3d9e5f805751692fac7c13 (patch) | |
tree | 19b02578e92f8575e38a094f7639cc5d9944bb60 /textproc/py-csv/Makefile | |
parent | b1c8009964d62ff0a137f1f8199850299a3dc286 (diff) | |
download | freebsd-ports-gnome-d89ab9047e1450843b3d9e5f805751692fac7c13.tar.gz freebsd-ports-gnome-d89ab9047e1450843b3d9e5f805751692fac7c13.tar.zst freebsd-ports-gnome-d89ab9047e1450843b3d9e5f805751692fac7c13.zip |
a small yet fast Python extension module (written
in C) to parse or generate comma-separated value (CSV) files.
PR: ports/25408
Submitted by: Johann Visagie <johann@egenetics.com>
Diffstat (limited to 'textproc/py-csv/Makefile')
-rw-r--r-- | textproc/py-csv/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/textproc/py-csv/Makefile b/textproc/py-csv/Makefile new file mode 100644 index 000000000000..8eeabef1bd27 --- /dev/null +++ b/textproc/py-csv/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: py-csv +# Date created: 27 February 2001 +# Whom: Johann Visagie <johann@egenetics.com> +# +# $FreeBSD$ +# + +PORTNAME= csv +PORTVERSION= 0.2 +CATEGORIES= textproc python +MASTER_SITES= http://object-craft.com.au/projects/csv/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= johann@egenetics.com + +USE_PYTHON= yes + +WRKSRC= ${WRKDIR}/csv + +do-configure: + @ (cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${MAKE} -f \ + Makefile.pre.in boot) + +.include <bsd.port.mk> |