summaryrefslogtreecommitdiff
path: root/extra/raptor/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/raptor/PKGBUILD')
-rw-r--r--extra/raptor/PKGBUILD14
1 files changed, 8 insertions, 6 deletions
diff --git a/extra/raptor/PKGBUILD b/extra/raptor/PKGBUILD
index 2200c4ea7..b4fa579c6 100644
--- a/extra/raptor/PKGBUILD
+++ b/extra/raptor/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 130397 2011-07-06 11:19:50Z andrea $
+# $Id: PKGBUILD 131270 2011-07-12 17:27:06Z andrea $
# Maintainer: Andreas Radke <andyrtr at archlinux.org>
# Contributor: eric <eric@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=raptor
pkgver=2.0.3
-pkgrel=2
+pkgrel=3
pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples"
arch=('i686' 'x86_64' 'mips64el')
url="http://librdf.org/raptor"
@@ -13,20 +13,22 @@ depends=('libxml2>=2.7.8' 'curl>=7.21.7' 'zlib>=1.2.5' 'libxslt>=1.1.26')
license=('LGPL')
options=('!libtool')
source=("http://librdf.org/dist/source/raptor2-$pkgver.tar.gz"
- 'fix-soprano-bug.patch')
+ 'Allow-instead-of-in-TRiG.patch')
md5sums=('46eff4b20f8752d1146a3e0c8b2168dd'
- 'fd63150d1e9f83bb59af0d86c373c8fa')
+ '73cfb0c1098ded4eff8c7f64bcaa5471')
build() {
cd ${srcdir}/raptor2-${pkgver}
# see http://bugs.librdf.org/mantis/view.php?id=451
- patch -p1 -i "${srcdir}"/fix-soprano-bug.patch
+ patch -p1 -i "${srcdir}"/Allow-instead-of-in-TRiG.patch
# fix build with curl >= 7.21.2
sed -i '/#include <curl\/types.h>/d' src/raptor_internal.h
- ./configure --prefix=/usr --disable-static
+ ./configure --prefix=/usr \
+ --disable-static \
+ --with-yajl=no
make
}