diff options
author | FabioLolix | 2025-03-02 13:33:38 +0100 |
---|---|---|
committer | FabioLolix | 2025-03-02 13:33:38 +0100 |
commit | feeb262ffde1bedf0c90233edbdc90c5b60a20f2 (patch) | |
tree | 3a21cdcdfa4f82427a465c6d16132d998151d734 /PKGBUILD | |
parent | 64081892922e09d8b4ab7891f77eb2404de68824 (diff) | |
download | aur-gnome-online-accounts-git.tar.gz |
revision
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 31 |
1 files changed, 15 insertions, 16 deletions
@@ -1,31 +1,32 @@ +# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix +# Contributor: fisch02 + pkgname=gnome-online-accounts-git -_pkgname=gnome-online-accounts -pkgver=3.35.90+2+g72028173 -pkgrel=1 +pkgver=3.53.2.r1.ga25cb59 +pkgrel=2 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) -makedepends=(gobject-introspection gtk-doc vala git meson) +license=(LGPL-2.0-or-later) +depends=(webkit2gtk json-glib libnotify librest libsecret krb5 gcr-4 gtk4 libadwaita) +makedepends=(gobject-introspection gtk-doc vala git meson glib2-devel gi-docgen) optdepends=('gvfs-goa: Virtual file systems, e.g. OwnCloud' 'gvfs-google: Google Drive') -provides=('gnome-online-accounts') -conflicts=('gnome-online-accounts') +provides=(gnome-online-accounts libgoa libgoa-git) +conflicts=(gnome-online-accounts libgoa libgoa-git) source=("git+https://gitlab.gnome.org/GNOME/gnome-online-accounts.git") sha256sums=('SKIP') pkgver() { - cd $_pkgname - git describe --tags | sed 's/-/+/g' + cd gnome-online-accounts + git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } build() { - arch-meson $_pkgname build \ - -D lastfm=true \ - -D media_server=true \ - -D gtk_doc=true \ + arch-meson gnome-online-accounts build \ + -D documentation=true \ -D man=true + ninja -C build } @@ -36,5 +37,3 @@ check() { package() { DESTDIR="$pkgdir" meson install -C build } - -# vim:set ts=2 sw=2 et: |