1
0
forked from ports/contrib

raptor: initial commit, version 2.0.15

This commit is contained in:
Tim Biermann 2019-08-11 11:14:12 +02:00
parent d1482156f1
commit c7b3acca68
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 45 additions and 0 deletions

21
raptor/.footprint Normal file
View File

@ -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

5
raptor/.signature Normal file
View File

@ -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

19
raptor/Pkgfile Normal file
View File

@ -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
}