mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 10:10:31 -04:00
31 lines
663 B
Makefile
31 lines
663 B
Makefile
# 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
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
DEPRECATED= Depends on expiring graphics/embree
|
|
EXPIRATION_DATE= 2019-09-04
|
|
|
|
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>
|