mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
28 lines
570 B
Makefile
28 lines
570 B
Makefile
# Created by: Yuri Victorovich <yuri@rawbw.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pyembree
|
|
DISTVERSION= 0.1.4
|
|
CATEGORIES= graphics python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Python wrapper for Embree
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYNUMPY}
|
|
LIB_DEPENDS= libembree.so:graphics/embree
|
|
RUN_DEPENDS= ${PYNUMPY}
|
|
|
|
USES= localbase python
|
|
USE_PYTHON= autoplist distutils cython
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= scopatz
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pyembree/*.so
|
|
|
|
.include <bsd.port.mk>
|