29 lines
644 B
Plaintext
29 lines
644 B
Plaintext
# Description: A C library that parses RDF/XML/N-Triples into RDF triples
|
|
# URL: http://librdf.org/raptor
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: icu libxslt
|
|
|
|
name=raptor
|
|
version=2.0.16
|
|
release=1
|
|
source=(http://librdf.org/dist/source/raptor2-$version.tar.gz
|
|
libtool.patch
|
|
rpath.patch
|
|
xml2-config.patch)
|
|
|
|
build() {
|
|
cd "$name"2-$version
|
|
|
|
patch -Np0 -i $SRC/libtool.patch
|
|
patch -Np0 -i $SRC/rpath.patch
|
|
patch -Np0 -i $SRC/xml2-config.patch
|
|
|
|
./configure --prefix=/usr \
|
|
--with-yajl=no \
|
|
--with-icu-config=/usr/bin/icu-config
|
|
make
|
|
make prefix="$PKG"/usr install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
}
|