25 lines
515 B
Makefile
25 lines
515 B
Makefile
|
# Created by: Yuri Victorovich <yuri@rawbw.com>
|
||
|
# $FreeBSD$
|
||
|
|
||
|
PORTNAME= pyhull
|
||
|
PORTVERSION= 1.5.6
|
||
|
CATEGORIES= math python
|
||
|
MASTER_SITES= CHEESESHOP
|
||
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||
|
|
||
|
MAINTAINER= yuri@rawbw.com
|
||
|
COMMENT= Computation of convex hull, Delaunay triangulation and Voronoi diagram
|
||
|
|
||
|
LICENSE= MIT
|
||
|
|
||
|
BUILD_DEPENDS= ${PYNUMPY}
|
||
|
RUN_DEPENDS= ${PYNUMPY}
|
||
|
|
||
|
USES= python
|
||
|
USE_PYTHON= autoplist distutils
|
||
|
|
||
|
post-install:
|
||
|
@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pyhull/_pyhull.so
|
||
|
|
||
|
.include <bsd.port.mk>
|