core/raptor/PKGBUILD

32 lines
732 B
Bash
Raw Normal View History

2011-07-08 06:22:40 +08:00
#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas[at]chakra-project[dot]org>
2010-03-14 23:48:48 +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"
arch=('x86_64')
2010-03-14 23:48:48 +08:00
url="http://librdf.org/raptor"
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 \
--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
}