blob: 27f68d7013a765a851198a75f753b9a0efdfcd18 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Created by: Yuri Victorovich <yuri@rawbw.com>
# $FreeBSD$
PORTNAME= pyembree
DISTVERSION= 0.1.4
PORTREVISION= 2
CATEGORIES= graphics python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= yuri@FreeBSD.org
COMMENT= Python wrapper for Embree
BROKEN= outdated version, incompatible with Embree 3 API
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>
|