author | David Runge
<dvzrv@archlinux.org> 2022-09-02 20:02:58 UTC |
committer | David Runge
<dvzrv@archlinux.org> 2022-09-02 20:02:58 UTC |
parent | 53e9c389a47173eb677816733e1392f745b8bd3d |
PKGBUILD | +14 | -4 |
suil-0.10.16-fix_gtk_linking.patch | +57 | -0 |
diff --git a/PKGBUILD b/PKGBUILD index 62c3dd0..3d7422b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,18 +5,23 @@ pkgbase=suil pkgname=(suil suil-docs) pkgver=0.10.16 -pkgrel=2 +pkgrel=3 pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs" arch=(x86_64) url="https://drobilla.net/software/suil.html" license=(ISC) makedepends=(doxygen gtk2 gtk3 lv2 meson python-sphinx python-sphinx-lv2-theme qt5-base qt5-x11extras) options=(debug) -source=(https://download.drobilla.net/$pkgname-$pkgver.tar.xz{,.sig}) +source=( + https://download.drobilla.net/$pkgname-$pkgver.tar.xz{,.sig} + $pkgbase-0.10.16-fix_gtk_linking.patch +) sha512sums=('9b1dac07b017934a93f70d514ec477785683e7ed5949b62a2c4ad139c1e84265399f54d3140dcf0e542d20a0919286aacb52103c91e2f6fc7ebd707db2d98ac4' - 'SKIP') + 'SKIP' + '79fbfe748714c430026d499bf9e7f46cc686e52dcb325d9a9c04206ad0324f7100453a54f7b5ca9eb2562aa0f36215666077346775ef3db8dbe88c361dc2fedf') b2sums=('614217013b39215f4b6d9414451a55fbca42dd038c6bc961d3769660707bf2da45432c97628edef8dacb8630437bcb304d10616ced2fd9cf9a6a4d094f196f6c' - 'SKIP') + 'SKIP' + 'e9d70fc61783acaf40670ce37ab68c57e244dd570ca1e2b9949f301eb31ad0203530f7e5230bc9904d58cde54bd86413052cd0fe2a24f3f68b70004cebf04f34') validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3') # David Robillard <d@drobilla.net> _pick() { @@ -29,6 +34,11 @@ _pick() { done } +prepare() { + # fix issues with opening lv2 plugins multiple times: https://gitlab.com/lv2/suil/-/issues/7 + patch -Np1 -d $pkgname-$pkgver -i ../$pkgbase-0.10.16-fix_gtk_linking.patch +} + build() { arch-meson $pkgname-$pkgver build -D cocoa=disabled meson compile -C build diff --git a/suil-0.10.16-fix_gtk_linking.patch b/suil-0.10.16-fix_gtk_linking.patch new file mode 100644 index 0000000..14dbfcd --- /dev/null +++ b/suil-0.10.16-fix_gtk_linking.patch @@ -0,0 +1,57 @@ +diff --git a/meson.build b/meson.build +index b19e5e0..c72af31 100644 +--- a/meson.build ++++ b/meson.build +@@ -43,6 +43,9 @@ subdir('meson/suppressions') + suil_abs_module_dir = get_option('prefix') / suil_module_dir + platform_defines = ['-DSUIL_MODULE_DIR="@0@"'.format(suil_abs_module_dir)] + ++nodelete_c_link_args = cc.get_supported_link_arguments(['-Wl,-z,nodelete']) ++nodelete_cpp_link_args = cpp.get_supported_link_arguments(['-Wl,-z,nodelete']) ++ + ################ + # Dependencies # + ################ +@@ -220,6 +223,7 @@ if gtk2_dep.found() and qt5_dep.found() + include_directories: include_dirs, + install: true, + install_dir: suil_module_dir, ++ link_args: nodelete_cpp_link_args, + ) + endif + +@@ -233,6 +237,7 @@ if gtk2_dep.found() and gtk2_x11_dep.found() and x11_dep.found() + include_directories: include_dirs, + install: true, + install_dir: suil_module_dir, ++ link_args: nodelete_c_link_args, + ) + endif + +@@ -246,6 +251,7 @@ if gtk3_dep.found() and gtk3_x11_dep.found() and x11_dep.found() + include_directories: include_dirs, + install: true, + install_dir: suil_module_dir, ++ link_args: nodelete_c_link_args, + ) + endif + +@@ -259,6 +265,7 @@ if gtk3_dep.found() and gtk3_x11_dep.found() and qt5_dep.found() + include_directories: include_dirs, + install: true, + install_dir: suil_module_dir, ++ link_args: nodelete_cpp_link_args, + ) + endif + +@@ -285,6 +292,7 @@ if gtk2_dep.found() and host_machine.system() == 'windows' + include_directories: include_dirs, + install: true, + install_dir: suil_module_dir, ++ link_args: nodelete_cpp_link_args, + ) + endif + +-- +GitLab +