Date: Sunday, October 23, 2022 @ 17:38:33
Author: heftig
Revision: 458821
archrelease: copy trunk to gnome-unstable-x86_64
Added:
gnome-online-accounts/repos/gnome-unstable-x86_64/
gnome-online-accounts/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 458820, gnome-online-accounts/trunk/PKGBUILD)
----------+
PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
Copied: gnome-online-accounts/repos/gnome-unstable-x86_64/PKGBUILD (from rev
458820, gnome-online-accounts/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2022-10-23 17:38:33 UTC (rev 458821)
@@ -0,0 +1,49 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+
+pkgname=gnome-online-accounts
+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-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=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/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+}
+
+build() {
+ local meson_options=(
+ -D gtk_doc=true
+ -D man=true
+ -D media_server=true
+ )
+
+ arch-meson $pkgname build "${meson_options[@]}"
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 sts=-1 et: