summaryrefslogtreecommitdiff
path: root/extra/raptor
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-03-28 10:54:32 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-03-28 10:54:32 -0300
commit6aa1c22fe01ff4df6c5f75fd04d551b53f7df389 (patch)
tree3aa1745b2e6a8a2ee8f6e8a44ca6330d9bc62065 /extra/raptor
parentd41442b9f2dccbf8c7a283391e2bc3fe8b29bf07 (diff)
parenta26ce336126d18cde915c2331250b8dfbffc24f8 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/vhba-module/PKGBUILD community/cdemu-daemon/PKGBUILD community/luakit/PKGBUILD gnome-unstable/glib2/PKGBUILD gnome-unstable/gthumb/PKGBUILD gnome-unstable/libgnomekbd/PKGBUILD multilib/lib32-e2fsprogs/PKGBUILD multilib/lib32-freetype2/PKGBUILD multilib/lib32-gnutls/PKGBUILD multilib/lib32-krb5/PKGBUILD multilib/lib32-libsm/PKGBUILD multilib/lib32-libxcursor/PKGBUILD multilib/lib32-libxmu/PKGBUILD multilib/lib32-libxrender/PKGBUILD multilib/lib32-libxt/PKGBUILD multilib/lib32-libxv/PKGBUILD multilib/lib32-libxvmc/PKGBUILD multilib/lib32-mpg123/PKGBUILD
Diffstat (limited to 'extra/raptor')
-rw-r--r--extra/raptor/PKGBUILD18
1 files changed, 12 insertions, 6 deletions
diff --git a/extra/raptor/PKGBUILD b/extra/raptor/PKGBUILD
index 3bd747b37..67144bfed 100644
--- a/extra/raptor/PKGBUILD
+++ b/extra/raptor/PKGBUILD
@@ -1,30 +1,36 @@
-# $Id: PKGBUILD 143845 2011-11-30 01:41:45Z eric $
-# Maintainer: Andreas Radke <andyrtr at archlinux.org>
+# $Id: PKGBUILD 154325 2012-03-26 11:01:20Z tomegun $
+# Maintainer: Tom Gundersen <teg@jklm.no>
+# Contributor: Andreas Radke <andyrtr@archlinux.org>
# Contributor: eric <eric@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=raptor
-pkgver=2.0.6
+pkgver=2.0.7
pkgrel=1
pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples"
arch=('i686' 'x86_64' 'mips64el')
url="http://librdf.org/raptor"
-depends=('curl>=7.22.0' 'libxslt>=1.1.26')
+depends=('curl' 'libxslt' 'icu')
license=('LGPL')
options=('!libtool')
source=("http://librdf.org/dist/source/raptor2-$pkgver.tar.gz")
-md5sums=('1f07af81cbe3cf1bf0d1d250b18d9f93')
build() {
cd "${srcdir}"/raptor2-${pkgver}
./configure --prefix=/usr \
--disable-static \
- --with-yajl=no
+ --with-yajl=no \
+ --with-icu-config=/usr/bin/icu-config
make
}
+#check() {
+# make -C "raptor2-$pkgver" check // currently does not work
+#}
+
package() {
cd "${srcdir}"/raptor2-${pkgver}
make prefix="${pkgdir}"/usr install
}
+md5sums=('699073463467dc8eded2ca89de2ab2ea')