8f9b4275dc
quality mesh generator and delaunay triangulator library. This implementation utilizes Cython_ to wrap the C API as closely as possible. WWW: https://rufat.be/triangle
24 lines
462 B
Makefile
24 lines
462 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= triangle
|
|
PORTVERSION= 20190115.3
|
|
CATEGORIES= math
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= db@FreeBSD.org
|
|
COMMENT= Python interface to triangle
|
|
|
|
LICENSE= LGPL3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= compiler:c++11-lang python
|
|
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
BUILD_DEPENDS= triangle>0:math/triangle
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/triangle/core.so
|
|
|
|
.include <bsd.port.mk>
|