Date: Sunday, March 25, 2012 @ 11:21:53 Author: tomegun Revision: 154297
upgpkg: raptor 2.0.7-1 upstream update add icu support Modified: raptor/trunk/PKGBUILD ----------+ PKGBUILD | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2012-03-25 13:52:00 UTC (rev 154296) +++ PKGBUILD 2012-03-25 15:21:53 UTC (rev 154297) @@ -1,30 +1,36 @@ # $Id$ -# Maintainer: Andreas Radke <andyrtr at archlinux.org> +# Maintainer: Tom Gundersen <[email protected]> +# Contributor: Andreas Radke <[email protected]> # Contributor: eric <[email protected]> # Contributor: Damir Perisa <[email protected]> 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')
