bd097878b0
The source is unfetchable from cython.org. Approved by: portmgr (blanket)
24 lines
571 B
Makefile
24 lines
571 B
Makefile
# Created by: Wen Heping <wenhping@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cython
|
|
PORTVERSION= 0.29
|
|
CATEGORIES= lang python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Cython-${PORTVERSION}
|
|
|
|
MAINTAINER= vmagerya@gmail.com
|
|
COMMENT= Compiler for Writing C Extensions for the Python Language
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils concurrent allflavors
|
|
|
|
post-install:
|
|
${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Cython \
|
|
-name '*.so' -exec ${STRIP_CMD} {} +
|
|
|
|
.include <bsd.port.mk>
|