25 lines
602 B
Makefile
25 lines
602 B
Makefile
# Created by: Ju Pengfei <ju.pengfei@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= numexpr
|
|
PORTVERSION= 2.6.0
|
|
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= ${PYTHON_PKGNAMEPREFIX}numpy>=1.6:math/py-numpy
|
|
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>
|