Date: Tuesday, October 25, 2022 @ 14:29:29 Author: heftig Revision: 458884
43.0-1 Modified: devhelp/trunk/PKGBUILD ----------+ PKGBUILD | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-10-25 14:27:07 UTC (rev 458883) +++ PKGBUILD 2022-10-25 14:29:29 UTC (rev 458884) @@ -4,17 +4,17 @@ pkgbase=devhelp pkgname=(devhelp devhelp-docs) -pkgver=41.3 +pkgver=43.0 pkgrel=1 pkgdesc="API documentation browser for GNOME" url="https://wiki.gnome.org/Apps/Devhelp" arch=(x86_64) license=(GPL) -depends=(webkit2gtk) +depends=(webkit2gtk-4.1) makedepends=(git appstream-glib gobject-introspection meson yelp-tools gi-docgen) options=(debug) -_commit=f3a08affbfe5033db8d8cb4668a2436958c68157 # tags/41.3^0 +_commit=f4e68f3f0134becbdd737eaac85caaa0a8e43a66 # tags/43.0^0 source=("git+https://gitlab.gnome.org/GNOME/devhelp.git#commit=$_commit") sha256sums=('SKIP') @@ -28,11 +28,14 @@ } build() { - arch-meson devhelp build \ - -D gtk_doc=true \ - -D plugin_emacs=true \ - -D plugin_gedit=true \ + local meson_options=( + -D gtk_doc=true + -D plugin_emacs=true + -D plugin_gedit=true -D plugin_vim=true + ) + + arch-meson devhelp build "${meson_options[@]}" meson compile -C build } @@ -56,3 +59,5 @@ mv -t "$pkgdir" docs/* } + +# vim:set sw=2 sts=-1 et:
