2011-07-08 06:22:40 +08:00
|
|
|
#
|
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
2013-02-17 14:49:15 +08:00
|
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
2010-03-14 23:48:48 +08:00
|
|
|
|
2011-03-06 22:51:27 +08:00
|
|
|
pkgname=raptor
|
2014-06-04 05:54:22 +08:00
|
|
|
pkgver=2.0.14
|
2010-03-14 23:48:48 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples"
|
2013-02-17 14:49:15 +08:00
|
|
|
arch=('x86_64')
|
2010-03-14 23:48:48 +08:00
|
|
|
url="http://librdf.org/raptor"
|
2013-02-17 14:49:15 +08:00
|
|
|
depends=('libxml2' 'curl' 'zlib>=1.2.5' 'libxslt' 'icu')
|
2010-03-14 23:48:48 +08:00
|
|
|
license=('LGPL')
|
|
|
|
options=('!libtool')
|
2011-08-15 07:44:51 +08:00
|
|
|
source=("http://librdf.org/dist/source/raptor2-$pkgver.tar.gz")
|
2014-06-04 05:54:22 +08:00
|
|
|
md5sums=('d3e0b43866197a5367b781b25510f728')
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
build() {
|
2011-08-15 07:44:51 +08:00
|
|
|
cd "${srcdir}"/raptor2-${pkgver}
|
2011-07-08 06:22:40 +08:00
|
|
|
|
2011-08-15 07:44:51 +08:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--disable-static \
|
2013-02-17 14:49:15 +08:00
|
|
|
--with-yajl=no \
|
|
|
|
--with-icu-config=/usr/bin/icu-config
|
2011-07-08 06:22:40 +08:00
|
|
|
make
|
2010-03-14 23:48:48 +08:00
|
|
|
}
|
2011-07-08 06:22:40 +08:00
|
|
|
|
|
|
|
package() {
|
2011-08-15 07:44:51 +08:00
|
|
|
cd "${srcdir}"/raptor2-${pkgver}
|
|
|
|
make prefix="${pkgdir}"/usr install
|
2013-10-04 02:22:14 +08:00
|
|
|
}
|