diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-21 10:02:53 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-21 10:02:53 +0000 |
commit | 6282dd710353aa7ae65adbf5b82da443dffd3c6d (patch) | |
tree | ca3a7eef0a8079e7b8b21b9b3f16b482ec2dfd7b /sratom | |
parent | 23bd698e7eeb7d1d338b18fdc71176b69c49a309 (diff) | |
download | contrib-6282dd710353aa7ae65adbf5b82da443dffd3c6d.tar.gz contrib-6282dd710353aa7ae65adbf5b82da443dffd3c6d.tar.xz |
sratom: initial commit, version 0.6.2
Diffstat (limited to 'sratom')
-rw-r--r-- | sratom/.footprint | 11 | ||||
-rw-r--r-- | sratom/.signature | 5 | ||||
-rw-r--r-- | sratom/Pkgfile | 20 |
3 files changed, 36 insertions, 0 deletions
diff --git a/sratom/.footprint b/sratom/.footprint new file mode 100644 index 000000000..5e80080ae --- /dev/null +++ b/sratom/.footprint @@ -0,0 +1,11 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/sratom-0/ +drwxr-xr-x root/root usr/include/sratom-0/sratom/ +-rw-r--r-- root/root usr/include/sratom-0/sratom/sratom.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libsratom-0.so -> libsratom-0.so.0.6.2 +lrwxrwxrwx root/root usr/lib/libsratom-0.so.0 -> libsratom-0.so.0.6.2 +-rwxr-xr-x root/root usr/lib/libsratom-0.so.0.6.2 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/sratom-0.pc diff --git a/sratom/.signature b/sratom/.signature new file mode 100644 index 000000000..b5701f506 --- /dev/null +++ b/sratom/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3zTSCVJtN7edUJugJZy6G/xSjgCEkAS1SJ4wF7LtTv87DZpcgDub+6WawJcnatIKVNg5HRP5bS3PVrr3GzLJegE= +SHA256 (Pkgfile) = e54d6b9be7b064eb14f79f8dbd4c1a3c50720c0fb09c9f9e364ecddc44bc3800 +SHA256 (.footprint) = 462c3ab07c6b018233d58622233c0b2343bd5c0a0fa11d6d4a1491f421c4dcf1 +SHA256 (sratom-0.6.2.tar.bz2) = 0a514a55d6b6cb7b5d6f32d1dcb78a1e6e54537fa22fce533e4ef6adf240e853 diff --git a/sratom/Pkgfile b/sratom/Pkgfile new file mode 100644 index 000000000..1ea21b7a7 --- /dev/null +++ b/sratom/Pkgfile @@ -0,0 +1,20 @@ +# Description: An LV2 Atom RDF serialisation library. +# URL: http://drobilla.net/software/sratom +# Maintainer: Tim Biermann, tbier at posteo dot de +# Packager: Danny Rawlins, crux at romster dot me +# Depends on: sord lv2 + +name=sratom +version=0.6.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" +} |