sord: 0.16.10 -> 0.16.12

This commit is contained in:
Tim Biermann 2022-07-23 17:30:49 +02:00
parent 3e453f39bb
commit 232c6a3e4c
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 17 additions and 16 deletions

View File

@ -8,9 +8,9 @@ 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.10
lrwxrwxrwx root/root usr/lib/libsord-0.so.0 -> libsord-0.so.0.16.10
-rwxr-xr-x root/root usr/lib/libsord-0.so.0.16.10
lrwxrwxrwx root/root usr/lib/libsord-0.so -> libsord-0.so.0
lrwxrwxrwx root/root usr/lib/libsord-0.so.0 -> libsord-0.so.0.16.12
-rwxr-xr-x root/root usr/lib/libsord-0.so.0.16.12
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/

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3wfk93xoRLHdoy0uHyOvL96DYinUzh5KogqBuxUTANOWrpL6osLyPO9EnWAr3EDDEGw43s94EZLfpVxnITdPLgM=
SHA256 (Pkgfile) = 0ecaabc50a2abb0fc222b129d174c1360fbb6bf3633fc6aa1006a64731e2b247
SHA256 (.footprint) = 27e970ddf6a7e39ab6b7fcb0d96163f56e249c5c5e59e1fe8ec24d7a3a733709
SHA256 (sord-0.16.10.tar.bz2) = 9c70b3fbbb0c5c7bf761ef66c3d5b939ab45ad063e055990f17f40f1f6f96572
RWSagIOpLGJF33u8WcrKLWNQKJyIwYaKKRaXTGfjdHt8+w2kgiuyJcUpOMJxwv6trQW7L5B7BVtqZ9HboJKzVBjankXQScHl+gs=
SHA256 (Pkgfile) = 5006c98fd9c1639425804912008980db90154a7863699b1255370b0be3607406
SHA256 (.footprint) = 314a47d645bd225b452cc5c62f4f959c86a77d06eaccc8f6fdaddd7dfe806f21
SHA256 (sord-0.16.12.tar.xz) = fde269893cb24b2ab7b75708d7a349c6e760c47a0d967aeca5b1c651294ff9f2

View File

@ -1,20 +1,21 @@
# Description: A lightweight C library for storing RDF data in memory.
# URL: https://drobilla.net/software/sord.html
# Maintainer: Tim Biermann, tbier at posteo dot de
# Packager: Danny Rawlins, crux at romster dot me
# Depends on: serd
name=sord
version=0.16.10
version=0.16.12
release=1
source=(http://download.drobilla.net/$name-$version.tar.bz2)
source=(http://download.drobilla.net/$name-$version.tar.xz)
build() {
cd $name-$version
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true
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"
meson compile -C build
DESTDIR=$PKG meson install -C build
}