# $Id: PKGBUILD 198163 2013-10-30 13:10:44Z allan $ # Maintainer : Ionut Biru # Contributor: Sergej Pupykin pkgname=libgee pkgver=0.12.0 pkgrel=1 pkgdesc="GObject collection library" url="http://live.gnome.org/Libgee" license=(LGPL2.1) arch=(i686 x86_64) depends=(glib2) makedepends=(gobject-introspection vala) source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) sha256sums=('d106ed63fe0da5d5ee89aa8197a373cf9a2b96688cc3060144bfc0a022496ea5') build() { cd $pkgname-$pkgver ./configure --prefix=/usr --disable-static make } check() { cd $pkgname-$pkgver # generates a bazillion traps - make sure systemd's core_pattern # is deactivated, or you'll DoS the journal and the system #make check } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install }