author | Urja (ARMLFS builder)
<urja+armlfs@urja.dev> 2025-02-10 10:30:58 UTC |
committer | Urja (ARMLFS builder)
<urja+armlfs@urja.dev> 2025-02-10 10:30:58 UTC |
parent | 05c6254cdf24c538e6943591349b41ee1928fd74 |
.gitignore | +2 | -0 |
PKGBUILD | +8 | -8 |
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a43258a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/src/ +/pkg/ diff --git a/PKGBUILD b/PKGBUILD index e65d93f..7e0bf05 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,20 +7,20 @@ pkgname=(suil{,-docs}) pkgver=0.10.20 pkgrel=1 pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs" -arch=(x86_64) +arch=(x86_64 'armv7h') url="https://drobilla.net/software/suil.html" license=('0BSD OR ISC') makedepends=( doxygen - gtk2 +# gtk2 gtk3 lv2 meson python-sphinx python-sphinx-lv2-theme python-sphinxygen - qt5-base - qt5-x11extras +# qt5-base +# qt5-x11extras ) source=(https://download.drobilla.net/$pkgname-$pkgver.tar.xz{,.sig}) sha512sums=('fb3735d0856c826f46ad2334b6965f4116df2fa3132d10bdfcd2b2d39f8e40142801ce3f352425845adfac90bf4a60d76d09fdf0a99b2cec82faa0f5f127c3f8' @@ -40,7 +40,7 @@ _pick() { } build() { - arch-meson $pkgname-$pkgver build -D cocoa=disabled + arch-meson $pkgname-$pkgver build -D cocoa=disabled -D gtk2=disabled -D qt5=disabled meson compile -C build } @@ -56,11 +56,11 @@ package_suil() { ) optdepends=( 'glib2: support for wrapping X11 and Qt5 in GTK3 and GTK2' - 'gtk2: support for wrapping X11 and Qt5 in GTK2 and GTK2 in Qt5' +# 'gtk2: support for wrapping X11 and Qt5 in GTK2 and GTK2 in Qt5' 'gtk3: support for wrapping X11 and Qt5 in GTK3' 'libx11: support for wrapping X11 directly and in GTK3 and GTK2' - 'qt5-base: support for wrapping X11 in Qt5 and Qt5 in GTK3 and GTK2' - 'qt5-x11extras: support for wrapping X11 in Qt5' +# 'qt5-base: support for wrapping X11 in Qt5 and Qt5 in GTK3 and GTK2' +# 'qt5-x11extras: support for wrapping X11 in Qt5' ) provides=(libsuil-0.so)