diff options
Diffstat (limited to 'community/gts/PKGBUILD')
-rw-r--r-- | community/gts/PKGBUILD | 30 |
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 +} |