blob: ce6feb54e76afc6fc0ae76803eaae12759e1f44c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "A Quality Tetrahedral Mesh Generator and Three-Dimensional Delaunay Triangulator."
LICENSE = "MIT"
SRC_URI = "http://www.wias-berlin.de/people/si/tetgen${PV}.tar.gz"
S = "${WORKDIR}/tetgen${PV}"
CXX += " ${LDFLAGS}"
do_configure() {
sed -i -e s:ar\ :'${AR}'\ :g makefile
}
do_install() {
install -d ${D}${bindir}
install -m 0755 tetgen ${D}${bindir}/
}
|