772d4e8f95
pyXLWriter is a Python library for generating Excel-compatible spreadsheets. It's a port of John McNamara's Perl Spreadsheet::WriteExcel module (see http://www.cpan.org) to Python. WWW: http://pyxlwriter.sourceforge.net/ PR: ports/80930 Submitted by: Choe Cheng-Dae <whitekid@gmail.com>
27 lines
631 B
Makefile
27 lines
631 B
Makefile
# New ports collection makefile for: py-xlwriter
|
|
# Date created: 12 May 2005
|
|
# Whom: Choe, Cheng-Dae
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xlwriter
|
|
PORTVERSION= 0.4a3
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= pyxlwriter
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= pyXLWriter-${PORTVERSION}
|
|
|
|
MAINTAINER= whitekid@gmail.com
|
|
COMMENT= A python library for generating Excel-compatible spreadsheets
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
USE_ZIP= yes
|
|
|
|
post-install:
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${FIND} ${WRKSRC}/examples -type f -exec ${INSTALL_DATA} {} ${EXAMPLESDIR} \;
|
|
|
|
.include <bsd.port.mk>
|