Date: Wednesday, January 25, 2023 @ 08:08:25 Author: heftig Revision: 467344
3.44.0-1 Modified: zenity/trunk/PKGBUILD ----------+ PKGBUILD | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-01-25 08:08:02 UTC (rev 467343) +++ PKGBUILD 2023-01-25 08:08:25 UTC (rev 467344) @@ -2,7 +2,7 @@ # Contributor: Jan de Groot <[email protected]> pkgname=zenity -pkgver=3.43.0 +pkgver=3.44.0 pkgrel=1 pkgdesc="Display graphical dialog boxes from shell scripts" url="https://gitlab.gnome.org/GNOME/zenity" @@ -10,7 +10,7 @@ license=(LGPL) depends=(webkit2gtk-4.1 libnotify) makedepends=(yelp-tools meson git) -_commit=01e6d92f23f49414ba8ec4c5b3daf49222c1e31d # tags/3.43.0^0 +_commit=7bf8c8910d34bfb2b883b32118b93b68d44dd77b # tags/3.44.0^0 source=("git+https://gitlab.gnome.org/GNOME/zenity.git#commit=$_commit") sha256sums=('SKIP') @@ -24,9 +24,12 @@ } build() { - arch-meson zenity build \ - -D libnotify=true \ + local meson_options=( + -D libnotify=true -D webkitgtk=true + ) + + arch-meson zenity build "${meson_options[@]}" meson compile -C build } @@ -37,3 +40,5 @@ package() { meson install -C build --destdir "$pkgdir" } + +# vim:set sw=2 sts=-1 et:
