summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 59f29b4d9e35cc0eab86afe7f453a5c1fa64ba16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Contributor: Dylon Edwards <deltaecho at archlinux dot us>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

pkgname='tetgen'
pkgver='1.5.1'
pkgrel=1
pkgdesc='A Quality Tetrahedral Mesh Generator and a 3D Delaunay Triangulator'
arch=('x86_64')
url='http://wias-berlin.de/software/index.jsp?id=TetGen&lang=1'
license=('AGPL3')
changelog="${pkgname}.changelog"
# You must accept the licensing terms before downloading the source archive:
#   http://wias-berlin.de/software/tetgen/download2.jsp
# Place the downloaded archive in $SRCDEST of your /etc/makepkg.conf
source=("local://${pkgname}${pkgver}.tar.gz")
md5sums=('2ab470d2b3c47b9edae6febe45d7a0e1')

prepare() {
    mkdir -p build
}

build() {
    cd build
    cmake ../"${pkgname}${pkgver}" \
          -DCMAKE_INSTALL_PREFIX=/usr \
          -DCMAKE_BUILD_TYPE=Release
    make
}

package() {
    cd build
    install -m 755 -D -t "${pkgdir}/usr/bin" tetgen
    install -m 644 -D -t "${pkgdir}/usr/lib" libtet.a
    install -m 644 -D -t "${pkgdir}/usr/include" ../"${pkgname}${pkgver}/tetgen.h"
}