PKGBUILDs/extra/gtkglarea/PKGBUILD
2009-10-09 21:23:22 -05:00

22 lines
610 B
Bash

# $Id: PKGBUILD 34227 2009-04-08 09:28:08Z eric $
# Maintainer: arjan <arjan@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=gtkglarea
pkgver=1.2.3
pkgrel=3
pkgdesc="GTK/GL Area libraries"
arch=('i686' 'x86_64')
url="http://mono-project.com/GtkGLArea"
license=('LGPL')
depends=('glut' 'gtk')
options=('!libtool')
source=(http://freeware.sgi.com/source/gtkglarea/$pkgname-$pkgver.tar.gz)
md5sums=('44f6804c1a9db61393e18680c81ae602')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --with-gl || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}