mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
2696935b46
Reported by: jbeich@ Differential Revision: https://reviews.freebsd.org/D5845 (based on)
25 lines
549 B
Makefile
25 lines
549 B
Makefile
# Created by: Wen Heping <wenhping@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cython
|
|
PORTVERSION= 0.25.2
|
|
CATEGORIES= lang python
|
|
MASTER_SITES= http://www.cython.org/release/ \
|
|
CHEESESHOP
|
|
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
|
|
|
|
post-install:
|
|
${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Cython \
|
|
-name '*.so' -exec ${STRIP_CMD} {} +
|
|
|
|
.include <bsd.port.mk>
|