mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
27 lines
640 B
Makefile
27 lines
640 B
Makefile
# Created by: Peter Schuller <peter.schuller@infidyne.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= greenlet
|
|
PORTVERSION= 0.4.14
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Light-weight microthreads for Python
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NOT_FOR_ARCHS= mips mips64 powerpc64
|
|
NOT_FOR_ARCHS_REASON= greenlet needs to be ported to this platform
|
|
|
|
DO_MAKE_TEST= ${PYTHON_CMD}
|
|
TEST_TARGET= run-tests.py
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/greenlet.so
|
|
|
|
.include <bsd.port.mk>
|