summaryrefslogtreecommitdiff
path: root/community/gtkglarea/PKGBUILD
blob: 11d03fa3ee432eb87b502fb969356e7cf5cba81b (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
30
31
32
# Maintainer: Connor Behan <connor.behan@gmail.com>
# Contributor: Andreas B. Wagner <AndreasBWagner@pointfree.net>
# Contributor: arjan <arjan@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Contributor: SpepS <dreamspepser at yahoo dot it>

pkgname=gtkglarea
pkgver=2.0.1
pkgrel=3
pkgdesc="GTK/GL Area libraries"
arch=('i686' 'x86_64')
url="http://mono-project.com/GtkGLArea"
license=('GPL')
depends=('gtk2' 'glu')
options=('!libtool')
source=("http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.0/$pkgname-$pkgver.tar.gz")
md5sums=('2a81a86cfa80a920a5454dd00fad2e1d')

build() {
	cd "$srcdir/$pkgname-$pkgver"

	# DSO link fix
	LDFLAGS+=" -lm" \
		./configure --prefix=/usr \
		--enable-static=no
	make
}

package() {
	cd "$srcdir/$pkgname-$pkgver"
	make DESTDIR="$pkgdir/" install
}