Date: Friday, March 22, 2013 @ 00:36:07 Author: heftig Revision: 180490
0.9.92 Modified: libgee/trunk/PKGBUILD ----------+ PKGBUILD | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2013-03-21 23:30:47 UTC (rev 180489) +++ PKGBUILD 2013-03-21 23:36:07 UTC (rev 180490) @@ -3,25 +3,32 @@ # Contributor: Sergej Pupykin <[email protected]> pkgname=libgee -pkgver=0.6.7 +pkgver=0.9.92 pkgrel=1 pkgdesc="GObject collection library" url="http://live.gnome.org/Libgee" -license=('LGPL2.1') -arch=('i686' 'x86_64') -depends=('glib2') -makedepends=('gobject-introspection') +license=(LGPL2.1) +arch=(i686 x86_64) +depends=(glib2) +makedepends=(gobject-introspection vala) options=('!libtool') source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz) -sha256sums=('b512bf1785fbbb6a264be5fac325c42d4e96cc560b22e3f19ea5b01b1414106d') +sha256sums=('94deb5c0d5ca34230345ea8c183ce5a8155121f9c939c4190fe6fe7f9218b642') build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr --disable-static - make + 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 + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install }
