updated on Mon Jan 16 04:00:32 UTC 2012
[aur-mirror.git] / geglmm / PKGBUILD
blob5062fa225c7d3c788fd30e6be8471a417aa3b290
1 # Maintainer: mainframe <>
2 # Contributor: Laurent Meunier <laurent@deltalima.net>
3 pkgname=geglmm
4 pkgver=0.1.0
5 pkgrel=1
6 pkgdesc="This is libgeglmm, the C++ bindings for GEGL."
7 arch=('i686')
8 url="http://ftp.gnome.org/pub/gnome/sources/geglmm/"
9 license=('GPL3' 'LGPL3')
10 depends=('gegl' 'glibmm' 'libsigc++')
11 source=(http://ftp.gnome.org/pub/gnome/sources/geglmm/0.1/$pkgname-$pkgver.tar.bz2)
12 md5sums=('cb018d76ce90bc5efb33ecc41a6f678e')
13 options=(!libtool strip)
15 build() {
16   cd "$srcdir/$pkgname-$pkgver"
18   ./configure --prefix=/usr
19   make || return 1
20   make DESTDIR="$pkgdir" install
23 # vim:set ts=2 sw=2 et: