summaryrefslogtreecommitdiff
path: root/extra/gts
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-11-21 23:14:49 +0000
committerroot <root@rshg054.dnsready.net>2011-11-21 23:14:49 +0000
commit859f538490d5f7a35356c8813cf5757b175eea98 (patch)
treef3da527fbc96be7a7a02fe3a8812d99c93fa8012 /extra/gts
parent70b4878648fd376433739bd5c835503f6301a5b2 (diff)
Mon Nov 21 23:14:49 UTC 2011
Diffstat (limited to 'extra/gts')
-rw-r--r--extra/gts/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/gts/PKGBUILD b/extra/gts/PKGBUILD
new file mode 100644
index 000000000..57d38d906
--- /dev/null
+++ b/extra/gts/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 143014 2011-11-20 23:59:13Z bisson $
+
+# Maintainer: Gaetan Bisson <bisson@archlinux.org>
+# Contributor: Thomas Dziedzic <gostrc at gmail>
+# Contributor: Juergen Hoetzel <juergen@archlinux.org>
+# Contributor: Tobias Kieslich <tobias@justdreams.de>
+
+pkgname=gts
+pkgver=0.7.6
+pkgrel=2
+pkgdesc='Provides useful functions to deal with 3D surfaces meshed with interconnected triangles'
+url='http://gts.sourceforge.net/'
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('glib2')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha1sums=('000720bebecf0b153eb28260bd30fbd979dcc040')
+options=('!libtool')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure --prefix=/usr --disable-static
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}