summaryrefslogtreecommitdiff
path: root/community/gts
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/gts
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gts')
-rw-r--r--community/gts/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community/gts/PKGBUILD b/community/gts/PKGBUILD
new file mode 100644
index 000000000..3af73a5ed
--- /dev/null
+++ b/community/gts/PKGBUILD
@@ -0,0 +1,30 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Juergen Hoetzel <juergen@archlinux.org>
+# Contributor: Tobias Kieslich <tobias@justdreams.de>
+
+pkgname=gts
+pkgver=0.7.6
+pkgrel=1
+pkgdesc='GNU Triangulated Surface Library.'
+arch=('i686' 'x86_64')
+url='http://gts.sourceforge.net/'
+license=('LGPL')
+depends=('glib2')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+md5sums=('9f710aefd2ed9b3cc1b1216171fc5a8a')
+options=('!libtool')
+
+build() {
+ cd ${pkgname}-${pkgver}
+
+ ./configure \
+ --prefix=/usr
+
+ make
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+
+ make DESTDIR=${pkgdir} install
+}