serd: initial commit, version 0.30.0

This commit is contained in:
Tim Biermann 2019-08-21 10:02:52 +00:00
parent afd8e4c978
commit bdda24f62f
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 42 additions and 0 deletions

17
serd/.footprint Normal file
View File

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

5
serd/.signature Normal file
View File

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

20
serd/Pkgfile Normal file
View File

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