2019-08-11 11:14:13 +02:00
|
|
|
# Description: Library that provides a high-level interface to RDF data
|
2021-06-16 08:45:20 +00:00
|
|
|
# URL: https://librdf.org/
|
2019-08-11 11:14:13 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: rasqal unixodbc sqlite3
|
|
|
|
# Optional: mysql postgresql
|
|
|
|
|
|
|
|
name=redland
|
|
|
|
version=1.0.17
|
2023-01-28 15:46:05 +01:00
|
|
|
release=3
|
2023-05-28 10:27:36 +02:00
|
|
|
source=(https://download.librdf.org/source/$name-$version.tar.gz
|
2023-01-28 15:46:05 +01:00
|
|
|
libtool.patch
|
|
|
|
redland-bundled-soname.patch.1
|
|
|
|
redland-format.patch.0
|
|
|
|
redland-xcompile.patch.1
|
|
|
|
rpath.patch)
|
2019-08-11 11:14:13 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2023-01-28 15:46:05 +01:00
|
|
|
|
|
|
|
patch -Np0 -i $SRC/libtool.patch
|
|
|
|
patch -Np1 -i $SRC/redland-bundled-soname.patch.1
|
|
|
|
patch -Np0 -i $SRC/redland-format.patch.0
|
|
|
|
patch -Np1 -i $SRC/redland-xcompile.patch.1
|
|
|
|
patch -Np0 -i $SRC/rpath.patch
|
|
|
|
|
2019-08-11 11:14:13 +02:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--enable-release \
|
|
|
|
--with-raptor=system \
|
|
|
|
--with-rasqal=system \
|
|
|
|
--with-sqlite=3 \
|
|
|
|
--with-bdb=no
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
|
|
}
|