commit c7b3acca6890c5b0011ba0826fb4f10d7e778ff3 Author: Tim Biermann <tbier@posteo.de> Date: Sun Aug 11 11:14:12 2019 +0200 raptor: initial commit, version 2.0.15 diff --git a/raptor/.footprint b/raptor/.footprint new file mode 100644 index 00000000..b488d7e3 --- /dev/null +++ b/raptor/.footprint @@ -0,0 +1,21 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/rapper +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/raptor2/ +-rw-r--r-- root/root usr/include/raptor2/raptor.h +-rw-r--r-- root/root usr/include/raptor2/raptor2.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libraptor2.a +-rwxr-xr-x root/root usr/lib/libraptor2.la +lrwxrwxrwx root/root usr/lib/libraptor2.so -> libraptor2.so.0.0.0 +lrwxrwxrwx root/root usr/lib/libraptor2.so.0 -> libraptor2.so.0.0.0 +-rwxr-xr-x root/root usr/lib/libraptor2.so.0.0.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/raptor2.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/rapper.1.gz +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/libraptor2.3.gz diff --git a/raptor/.signature b/raptor/.signature new file mode 100644 index 00000000..fc28b69b --- /dev/null +++ b/raptor/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3wksr0VUY5E1dIZ8FA/Sk3TlFtlgoDlIRMwZ1FIf1RLxxexiqfI3tysyv8eXtrk3cqKJdqJrYy86OFpFvCYnGAo= +SHA256 (Pkgfile) = df04c4e97f4c13d45bab8ca8c4023a0207480f5f117146856f38dd01a21c9359 +SHA256 (.footprint) = d17fbcd4efd58f95fa79560a96ec64dbbe01e47357edea3749b83357ad0d5c34 +SHA256 (raptor2-2.0.15.tar.gz) = ada7f0ba54787b33485d090d3d2680533520cd4426d2f7fb4782dd4a6a1480ed diff --git a/raptor/Pkgfile b/raptor/Pkgfile new file mode 100644 index 00000000..4f043e51 --- /dev/null +++ b/raptor/Pkgfile @@ -0,0 +1,19 @@ +# 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: brotli gnutls icu keyutils krb5 libpsl libxslt openldap rtmpdump + +name=raptor +version=2.0.15 +release=1 +source=(http://librdf.org/dist/source/raptor2-$version.tar.gz) + +build() { + cd "$name"2-$version + ./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 +}