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 | 23bd698e7eeb7d1d338b18fdc71176b69c49a309 (patch) | |
tree | 20ce76df763e694fdb56c6bf59c395ad5104d048 /sord | |
parent | bdda24f62fd5623fe76b9b02a648d231f0f63abd (diff) | |
download | contrib-23bd698e7eeb7d1d338b18fdc71176b69c49a309.tar.gz contrib-23bd698e7eeb7d1d338b18fdc71176b69c49a309.tar.xz |
sord: initial commit, version 0.16.2
Diffstat (limited to 'sord')
-rw-r--r-- | sord/.footprint | 20 | ||||
-rw-r--r-- | sord/.signature | 5 | ||||
-rw-r--r-- | sord/Pkgfile | 20 |
3 files changed, 45 insertions, 0 deletions
diff --git a/sord/.footprint b/sord/.footprint new file mode 100644 index 000000000..4db547854 --- /dev/null +++ b/sord/.footprint @@ -0,0 +1,20 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/sord_validate +-rwxr-xr-x root/root usr/bin/sordi +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/sord-0/ +drwxr-xr-x root/root usr/include/sord-0/sord/ +-rw-r--r-- root/root usr/include/sord-0/sord/sord.h +-rw-r--r-- root/root usr/include/sord-0/sord/sordmm.hpp +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libsord-0.so -> libsord-0.so.0.16.2 +lrwxrwxrwx root/root usr/lib/libsord-0.so.0 -> libsord-0.so.0.16.2 +-rwxr-xr-x root/root usr/lib/libsord-0.so.0.16.2 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/sord-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/sord_validate.1.gz +-rw-r--r-- root/root usr/share/man/man1/sordi.1.gz diff --git a/sord/.signature b/sord/.signature new file mode 100644 index 000000000..4918df0ff --- /dev/null +++ b/sord/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3/ifuL7o7fa1mHV215lVBmF17dCq4mKhyu22LQpbZ7Y7kEnM5KblTTvMAZMbooRxfE7VOMx3QsBwFJrv3M0S9AQ= +SHA256 (Pkgfile) = ea4985ac407195443f643967b2a3b38034eadb97531a729705192350637a082c +SHA256 (.footprint) = eb1e9d03220534f578db376fbc16a7cdeb310f6bba31d5fb86905b4d572efce3 +SHA256 (sord-0.16.2.tar.bz2) = 09f51174dd8f3efbd95f44f0bb0b165f08e066e052d40095de59de787987da8d diff --git a/sord/Pkgfile b/sord/Pkgfile new file mode 100644 index 000000000..919361b88 --- /dev/null +++ b/sord/Pkgfile @@ -0,0 +1,20 @@ +# Description: A lightweight C library for storing RDF data in memory. +# URL: http://drobilla.net/software/sord/ +# Maintainer: Tim Biermann, tbier at posteo dot de +# Packager: Danny Rawlins, crux at romster dot me +# Depends on: serd + +name=sord +version=0.16.2 +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" +} |