28 lines
491 B
Makefile
28 lines
491 B
Makefile
COMMENT= extract data from xls spreadsheet files
|
|
|
|
MODPY_EGG_VERSION= 2.0.1
|
|
DISTNAME= xlrd-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${DISTNAME}
|
|
|
|
CATEGORIES= textproc devel
|
|
|
|
# https://github.com/python-excel/xlrd
|
|
HOMEPAGE= https://www.python-excel.org/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MODULES= lang/python
|
|
|
|
MODPY_PI= Yes
|
|
MODPY_PYBUILD= setuptools
|
|
# not in pypi sdist
|
|
NO_TEST= Yes
|
|
|
|
FLAVORS= python3
|
|
FLAVOR= python3
|
|
|
|
post-install:
|
|
mv ${PREFIX}/bin/runxlrd.py ${PREFIX}/bin/runxlrd
|
|
|
|
.include <bsd.port.mk>
|