*Triangle* is a python wrapper around Jonathan Richard Shewchuk's two-dimensional

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
This commit is contained in:
Diane Bruce 2020-03-19 14:21:39 +00:00
parent 8d76eeb0e6
commit 8f9b4275dc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=528725
4 changed files with 33 additions and 0 deletions

View File

@ -808,6 +808,7 @@
SUBDIR += py-symcxx
SUBDIR += py-sympy
SUBDIR += py-theano
SUBDIR += py-triangle
SUBDIR += py-ufl
SUBDIR += py-uncertainties
SUBDIR += py-vincenty

24
math/py-triangle/Makefile Normal file
View File

@ -0,0 +1,24 @@
# $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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1584620539
SHA256 (triangle-20190115.3.tar.gz) = 69442062a1705f75b64166b161ade8a32a26b9323e09f5fa43079dbb6bf04bcc
SIZE (triangle-20190115.3.tar.gz) = 1554400

View File

@ -0,0 +1,5 @@
*Triangle* is a python wrapper around Jonathan Richard Shewchuk's two-dimensional
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