1
0
forked from ports/contrib

sratom: 0.6.10 -> 0.6.12

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

View File

@ -4,8 +4,8 @@ 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.10
lrwxrwxrwx root/root usr/lib/libsratom-0.so.0 -> libsratom-0.so.0.6.10
-rwxr-xr-x root/root usr/lib/libsratom-0.so.0.6.10
lrwxrwxrwx root/root usr/lib/libsratom-0.so -> libsratom-0.so.0
lrwxrwxrwx root/root usr/lib/libsratom-0.so.0 -> libsratom-0.so.0.6.12
-rwxr-xr-x root/root usr/lib/libsratom-0.so.0.6.12
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/sratom-0.pc

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF33Bbbg8muWj4Hkvb5PJ8J65a7qxOXecBNAxPcEAz+HLCIrhfxXJZXjTAzh9en6XxT39LYtWUeEeN4K4GrMdfWg0=
SHA256 (Pkgfile) = 38a8146d0cb2985c5dc5ae050adba63868781a73c5924ab5fbf3198a93dc5747
SHA256 (.footprint) = 0fff1fd4b3d75c6e8a2eaf7722813073a82e494f778b1d2622591ad97a2b7a31
SHA256 (sratom-0.6.10.tar.bz2) = e5951c0d7f0618672628295536a271d61c55ef0dab33ba9fc5767ed4db0a634d
RWSagIOpLGJF3xXaq7ZPZxywvc7ppRnoYWETsV/ZJo399JwadBobKcQdcy16UaYvj39bUPMpj3MsnxFY5/IBBQQwjKtzvAOIIQw=
SHA256 (Pkgfile) = 9975c68ccde81ee3cc6818a1d5f44cf683b7778b3ab1b8f970275cadaa0a4565
SHA256 (.footprint) = a36f5db59480602a9f5b917c9694b2e269f26bfc058ccf41422731ddfffb4e28
SHA256 (sratom-0.6.12.tar.xz) = 349933ce75ee4b467f0d620defa5b2139a2194c16dbf11a837b5fa800c1a0c83

View File

@ -1,20 +1,21 @@
# 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
# Depends on: lv2 meson ninja sord
name=sratom
version=0.6.10
version=0.6.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
}