blob: 1148e66369d3101cf560942da82c5439b211e97a (
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
|
# Maintainer: Mike Sampson <mike at sambodata dot com>
# Contributor: Lawrence Lee <valheru at facticius dot net>
pkgname=gle-te
pkgver=3.1.0
pkgrel=1
pkgdesc="a library of C functions that draw extruded surfaces, including surfaces of revolution, sweeps, tubes, polycones, polycylinders and helicoids."
arch=('i686' 'x86_64')
url="http://www.linas.org/gle/index.html"
license=('GPL')
depends=('libgl')
makedepends=('gcc' 'glut')
source=(http://downloads.sourceforge.net/gle/gle-$pkgver.tar.gz)
md5sums=('da5b45c6906343d4a3672c3de35513ad')
options=(!libtool)
build() {
cd "$srcdir/gle-$pkgver"
./configure --prefix=/usr --mandir=/usr/share
make
}
package() {
cd "$srcdir/gle-$pkgver"
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|