updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / gegl-gtk3 / PKGBUILD
blobeffa6af390454c0fc21afe409e4ef8a2a1ba8f3c
1 # Maintainer: Jon Nordby <jononor@gmail.com>
3 _pkgname=gegl-gtk
4 pkgname=gegl-gtk3
5 pkgver=0.0.7
6 pkgrel=1
7 pkgdesc="Convenience library for using GEGL in GTK3 applications" 
8 arch=(i686 x86_64)
9 url="http://www.gegl.org"
10 license=('LGPLv3+')
11 depends=('gegl' 'gtk3')
12 makedepends=()
13 provides=()
14 conflicts=()
15 source=(http://www.jonnor.com/files/$_pkgname-$pkgver.tar.bz2)
16 md5sums=('646b2cf05a636ece6d55a9ba7d179361')
18 build() {
19   cd "$srcdir/$_pkgname-$pkgver"
21   # BUILD
22   # Introspection requires gegl from git
23   ./configure --prefix=/usr --disable-introspection --with-gtk=3.0 --disable-gtk-doc
24   make
27 package() {
28   cd "$srcdir/$_pkgname-$pkgver"
30   make DESTDIR="$pkgdir/" install
31   rm -r $pkgdir/usr/share/gtk-doc/ # FIXME: Causes conflict between gegl-gtk2 and 3
32