diff --git a/suil/.footprint b/suil/.footprint index efe9cc989..e2bca98d2 100644 --- a/suil/.footprint +++ b/suil/.footprint @@ -4,8 +4,8 @@ drwxr-xr-x root/root usr/include/suil-0/ drwxr-xr-x root/root usr/include/suil-0/suil/ -rw-r--r-- root/root usr/include/suil-0/suil/suil.h drwxr-xr-x root/root usr/lib/ -lrwxrwxrwx root/root usr/lib/libsuil-0.so -> libsuil-0.so.0.10.12 -lrwxrwxrwx root/root usr/lib/libsuil-0.so.0 -> libsuil-0.so.0.10.12 --rwxr-xr-x root/root usr/lib/libsuil-0.so.0.10.12 +lrwxrwxrwx root/root usr/lib/libsuil-0.so -> libsuil-0.so.0 +lrwxrwxrwx root/root usr/lib/libsuil-0.so.0 -> libsuil-0.so.0.10.14 +-rwxr-xr-x root/root usr/lib/libsuil-0.so.0.10.14 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/suil-0.pc diff --git a/suil/.signature b/suil/.signature index 350a16bff..7df72402f 100644 --- a/suil/.signature +++ b/suil/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF31MNL81gFVg5vp/LLd8xiivXUPvumUBJgCRmjSopTOMyUzs6hSTZABvL+0SEaP9rBUApPj64vtXGdSde03qcMwI= -SHA256 (Pkgfile) = 9134652af168f643f403724f63550d07e11ed9d25493ffec0216ebdac1c7a705 -SHA256 (.footprint) = 4c1a1cf76851c9542ffe4df43f37015c073ebf1c77544936437e303f760efa33 -SHA256 (suil-0.10.12.tar.bz2) = daa763b231b22a1f532530d3e04c1fae48d1e1e03785e23c9ac138f207b87ecd +RWSagIOpLGJF3wSoxJF/Mw5A3lL0BrB3FbygMgSJvG+YVU3sOU49VJCL7HeaKOupsE83ClmKYPheL2hXhFdfed2ERzPYyVY0EgQ= +SHA256 (Pkgfile) = 6edcc2e72b661f871dcadaa73ae5fd8994f65a180ff6412153d9962d460c14ea +SHA256 (.footprint) = 42c83b58672a123e7efa6bf86faf3c8c83e0af79331519f8d4044a6ee023de9b +SHA256 (suil-0.10.14.tar.xz) = dfa5d8df9e45bd99c6a3bcaef7d4b13f764abf8148ce7ed4499f383299480211 diff --git a/suil/Pkgfile b/suil/Pkgfile index 05a1140bb..b22342fae 100644 --- a/suil/Pkgfile +++ b/suil/Pkgfile @@ -4,14 +4,18 @@ # Depends on: sratom name=suil -version=0.10.12 +version=0.10.14 release=1 -source=(https://download.drobilla.net/$name-$version.tar.bz2) +source=(https://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 - /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 }