updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / gle-te / PKGBUILD
blob1148e66369d3101cf560942da82c5439b211e97a
1 # Maintainer: Mike Sampson <mike at sambodata dot com>
2 # Contributor: Lawrence Lee <valheru at facticius dot net>
3 pkgname=gle-te
4 pkgver=3.1.0
5 pkgrel=1
6 pkgdesc="a library of C functions that draw extruded surfaces, including surfaces of revolution, sweeps, tubes, polycones, polycylinders and helicoids."
7 arch=('i686' 'x86_64')
8 url="http://www.linas.org/gle/index.html"
9 license=('GPL')
10 depends=('libgl')
11 makedepends=('gcc' 'glut')
12 source=(http://downloads.sourceforge.net/gle/gle-$pkgver.tar.gz)
13 md5sums=('da5b45c6906343d4a3672c3de35513ad')
14 options=(!libtool)
16 build() {
17   cd "$srcdir/gle-$pkgver"
19   ./configure --prefix=/usr --mandir=/usr/share
20   make
23 package() {
24   cd "$srcdir/gle-$pkgver"
26   make DESTDIR="$pkgdir" install
29 # vim:set ts=2 sw=2 et: