b73eff4feb
- Update MASTER_SITES: move back to CHEESESHOP - Add LICENSE_FILE - Reformat pkg-descr and remove trailing space - Add PyPI as primary WWW Changes: https://github.com/pydata/numexpr/blob/master/RELEASE_NOTES.rst
25 lines
565 B
Makefile
25 lines
565 B
Makefile
# Created by: Ju Pengfei <ju.pengfei@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= numexpr
|
|
PORTVERSION= 2.4.4
|
|
CATEGORIES= math python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Fast numerical array expression evaluator for Python and NumPy
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
BUILD_DEPENDS= ${PYNUMPY}
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
USES= python
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/numexpr/interpreter.so
|
|
|
|
.include <bsd.port.mk>
|