summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 05d6412787344d05fa19d7cee3daf076f14e0e11 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Contributor: Renato Caldas <renato@calgera.com>
# Contributor: Martin Diehl <m.diehl@mpie.de>
# Contributor: eolianoe <eolianoe At GoogleMAIL DoT com>
# Contributor: A Austin <acm.austin at gmail.com>
# Contributor: Martin Ortbauer <mortbauer@gmail.com>
pkgbase=archimedes-tools
pkgname=(triangle showme)
pkgver=1.6
pkgrel=9
arch=(i686 x86_64)
url="https://www.cs.cmu.edu/~quake/archimedes.html"
pkgdesc="Archimedes is a set of tools, including mesh generators, for performing unstructured finite element simulations"
license=('custom')
source=('http://www.netlib.org/voronoi/triangle.zip'
        'triangle_definitions.patch')
md5sums=('10aff8d7950f5e0e2fb6dd2e340be2c9'
         '98844d1b1d9de73101b660412132cd07')
makedepends=('libx11')

prepare() {
  patch < ${srcdir}/triangle_definitions.patch triangle.h
}

build(){
  export CFLAGS=-std=gnu11
  gcc ${CFLAGS} -o triangle triangle.c -lm
  gcc ${CFLAGS} -DTRILIBRARY -Wall -fpic -c triangle.c
  gcc ${CFLAGS} -shared -o libtriangle.so triangle.o

  gcc ${CFLAGS} -o showme showme.c -lX11
}

package_triangle() {
  url="https://www.cs.cmu.edu/~quake/triangle.html"
  pkgdesc='A Two-Dimensional Quality Mesh Generator and Delaunay Triangulator.'
  depends=('glibc')

  install -Dm755 triangle "${pkgdir}/usr/bin/triangle"
  install -Dm644 triangle.h "${pkgdir}/usr/include/triangle.h"
  install -Dm644 libtriangle.so "${pkgdir}/usr/lib/libtriangle.so"
  install -Dm644 "${srcdir}/README" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}

package_showme() {
  url="https://www.cs.cmu.edu/~quake/showme.html"
  pkgdesc='Show Me graphically displays the contents of geometric files, especially those generated by Triangle'
  depends=('libx11')

  install -Dm755 showme "${pkgdir}/usr/bin/showme"
  install -Dm644 "${srcdir}/README" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}