mirror of
https://git.freebsd.org/ports.git
synced 2025-05-18 01:53:13 -04:00
25 lines
613 B
Makefile
25 lines
613 B
Makefile
# Created by: Ju Pengfei <ju.pengfei@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= numexpr
|
|
PORTVERSION= 2.6.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= ${PYTHON_PKGNAMEPREFIX}numpy>=1.7,1:math/py-numpy
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
USES= dos2unix python
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/numexpr/interpreter.so
|
|
|
|
.include <bsd.port.mk>
|