summaryrefslogtreecommitdiff
path: root/extra/raptor
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-03-28 00:01:38 +0000
committerroot <root@rshg054.dnsready.net>2012-03-28 00:01:38 +0000
commita26ce336126d18cde915c2331250b8dfbffc24f8 (patch)
treedd0ee1c89d9c153abfde0b4e7878a2931893ed4c /extra/raptor
parentc8729cab8302ab82e01135a22fb9fa9704f1559b (diff)
Wed Mar 28 00:01:38 UTC 2012
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 62a6a6e50..c6900aee8 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')
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')