Date: Sunday, October 23, 2022 @ 17:38:05 Author: heftig Revision: 458820
3.46.0-1 Modified: gnome-online-accounts/trunk/PKGBUILD ----------+ PKGBUILD | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-10-23 17:34:49 UTC (rev 458819) +++ PKGBUILD 2022-10-23 17:38:05 UTC (rev 458820) @@ -2,25 +2,25 @@ # Contributor: Ionut Biru <[email protected]> pkgname=gnome-online-accounts -pkgver=3.44.0 +pkgver=3.46.0 pkgrel=1 pkgdesc="Single sign-on framework for GNOME" url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts" arch=(x86_64) license=(LGPL) -depends=(webkit2gtk json-glib libnotify rest libsecret krb5 gcr) +depends=(webkit2gtk-4.1 json-glib libnotify librest libsecret krb5 gcr) makedepends=(gobject-introspection gtk-doc vala git meson) optdepends=('gvfs-goa: Virtual file systems, e.g. OwnCloud' 'gvfs-google: Google Drive') provides=(libgoa-1.0.so libgoa-backend-1.0.so) options=(debug) -_commit=568139a2ce9d3791bd90b2b431898f712821c817 # tags/3.44.0^0 +_commit=05d9df2822e8d7ce482c46e43cb6fe038e5e488a # tags/3.46.0^0 source=("git+https://gitlab.gnome.org/GNOME/gnome-online-accounts.git#commit=$_commit") sha256sums=('SKIP') pkgver() { cd $pkgname - git describe --tags | sed 's/-/+/g' + git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g' } prepare() { @@ -28,10 +28,13 @@ } build() { - arch-meson $pkgname build \ - -D media_server=true \ - -D gtk_doc=true \ + local meson_options=( + -D gtk_doc=true -D man=true + -D media_server=true + ) + + arch-meson $pkgname build "${meson_options[@]}" meson compile -C build } @@ -43,4 +46,4 @@ meson install -C build --destdir "$pkgdir" } -# vim:set sw=2 et: +# vim:set sw=2 sts=-1 et:
