mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
534b2fb9ed
PR: 239304 Approved by: maintainer timeout (vmagerya@gmail.com, >2 months)
25 lines
574 B
Makefile
25 lines
574 B
Makefile
# Created by: Wen Heping <wenhping@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cython
|
|
PORTVERSION= 0.29.13
|
|
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>
|