4026de190a
1.2.0: - Added support for Python 3.7. - Added optional support for defusedxml to help mitigate exploits. - Automatically convert ~ in file paths to the current user's home directory. - Removed examples directory from the installed package. They are still available in the source distribution. - Fixed time.clock() deprecation warning.
20 lines
572 B
Makefile
20 lines
572 B
Makefile
# $NetBSD: Makefile,v 1.13 2018/12/15 21:02:58 adam Exp $
|
|
|
|
DISTNAME= xlrd-1.2.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=x/xlrd/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.lexicon.net/sjmachin/xlrd.htm
|
|
COMMENT= Python library to extract data from Microsoft Excel spreadsheet files
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} runxlrd.py runxlrd-${PYVERSSUFFIX}.py || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|