24 lines
564 B
Makefile
24 lines
564 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= rapi
|
|
DISTVERSION= 0.1.5
|
|
CATEGORIES= math
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Minimal R API for Python
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}multipledispatch>0:devel/py-multipledispatch@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
NO_ARCH= yes
|
|
|
|
post-extract: # https://github.com/randy3k/rchitect/issues/5
|
|
@${RM} -r ${WRKSRC}/tests
|
|
|
|
.include <bsd.port.mk>
|