summaryrefslogtreecommitdiff
path: root/extra/libgee/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/libgee/PKGBUILD')
-rw-r--r--extra/libgee/PKGBUILD33
1 files changed, 20 insertions, 13 deletions
diff --git a/extra/libgee/PKGBUILD b/extra/libgee/PKGBUILD
index 4a7600bfd..cf188fed8 100644
--- a/extra/libgee/PKGBUILD
+++ b/extra/libgee/PKGBUILD
@@ -1,27 +1,34 @@
-# $Id: PKGBUILD 175984 2013-01-25 15:31:43Z ioni $
+# $Id: PKGBUILD 183429 2013-04-21 22:11:15Z heftig $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=libgee
-pkgver=0.6.7
+pkgver=0.10.1
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')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f50c103107314daee6dc68054e359d5169a19c562902e323ba798b380a2a2c96')
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
}