diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-21 10:02:52 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-21 10:02:52 +0000 |
commit | bdda24f62fd5623fe76b9b02a648d231f0f63abd (patch) | |
tree | 85bae0231ea1af08f507a9dcc7652b34f6616046 /serd | |
parent | afd8e4c978ce160f44f8916c4e30c1fded13573d (diff) | |
download | contrib-bdda24f62fd5623fe76b9b02a648d231f0f63abd.tar.gz contrib-bdda24f62fd5623fe76b9b02a648d231f0f63abd.tar.xz |
serd: initial commit, version 0.30.0
Diffstat (limited to 'serd')
-rw-r--r-- | serd/.footprint | 17 | ||||
-rw-r--r-- | serd/.signature | 5 | ||||
-rw-r--r-- | serd/Pkgfile | 20 |
3 files changed, 42 insertions, 0 deletions
diff --git a/serd/.footprint b/serd/.footprint new file mode 100644 index 000000000..97b19b078 --- /dev/null +++ b/serd/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/serdi +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/serd-0/ +drwxr-xr-x root/root usr/include/serd-0/serd/ +-rw-r--r-- root/root usr/include/serd-0/serd/serd.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libserd-0.so -> libserd-0.so.0.30.0 +lrwxrwxrwx root/root usr/lib/libserd-0.so.0 -> libserd-0.so.0.30.0 +-rwxr-xr-x root/root usr/lib/libserd-0.so.0.30.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/serd-0.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/serdi.1.gz diff --git a/serd/.signature b/serd/.signature new file mode 100644 index 000000000..dce69d17d --- /dev/null +++ b/serd/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3wJ9w+Racx4LbuOweGfUb6hkt5CU0Cbjs0PHMAl/HT8VQ++I7XFZKrUYPlZ7PIL0rnq3GKo9C4dYGaNXiZyqTQ4= +SHA256 (Pkgfile) = 1bc9f1cfccadf0acda3e574389a5f36191e72d295bae8135c2a092fe23d2fd92 +SHA256 (.footprint) = aed0d7e87db167ade2a198a5dae41755b8bfc8fe868fb1f957b16616b87ae84b +SHA256 (serd-0.30.0.tar.bz2) = 6efb0efa5c2155e6bbac941cddeeabb7ed26d70a57d24178894ff169d8f6cefb diff --git a/serd/Pkgfile b/serd/Pkgfile new file mode 100644 index 000000000..6ac0f22b7 --- /dev/null +++ b/serd/Pkgfile @@ -0,0 +1,20 @@ +# Description: A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples. +# URL: http://drobilla.net/software/serd +# Maintainer: Tim Biermann, tbier at posteo dot de +# Packager: Danny Rawlins, crux at romster dot me +# Depends on: python + +name=serd +version=0.30.0 +release=1 +source=(http://download.drobilla.net/$name-$version.tar.bz2) + +build() { + cd $name-$version + + sed -i "/ldconfig/d" wscript + + /usr/bin/python3 waf configure --prefix=/usr + /usr/bin/python3 waf build $MAKEFLAGS + /usr/bin/python3 waf install --destdir="$PKG" +} |