blob: 2906aa42dfb1a4a72bea0260d7c87c2ee17319c3 (
plain)
1 # Description: Library that provides a high-level interface to RDF data
2 # URL: http://librdf.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: rasqal unixodbc sqlite3
5 # Optional: mysql postgresql
6
7 name=redland
8 version=1.0.17
9 release=1
10 source=(http://download.librdf.org/source/$name-$version.tar.gz rpath.diff)
11
12 build() {
13 cd $name-$version
14 ./configure --prefix=/usr \
15 --enable-release \
16 --with-raptor=system \
17 --with-rasqal=system \
18 --with-sqlite=3 \
19 --with-bdb=no
20 patch -Np0 -i $SRC/rpath.diff
21 make
22 make DESTDIR=$PKG install
23 rm -r $PKG/usr/share/gtk-doc
24 }
|