Date: Tuesday, October 25, 2022 @ 18:08:09
Author: heftig
Revision: 458956
archrelease: copy trunk to gnome-unstable-x86_64
Added:
gnome-contacts/repos/gnome-unstable-x86_64/
gnome-contacts/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 458955, gnome-contacts/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: gnome-contacts/repos/gnome-unstable-x86_64/PKGBUILD (from rev 458955,
gnome-contacts/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2022-10-25 18:08:09 UTC (rev 458956)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+
+pkgname=gnome-contacts
+pkgver=43.0
+pkgrel=1
+pkgdesc="Contacts Manager for GNOME"
+url="https://wiki.gnome.org/Apps/Contacts"
+arch=(x86_64)
+license=(GPL2)
+depends=(gtk4 folks gnome-online-accounts libgee libadwaita libportal-gtk4
+ evolution-data-server)
+makedepends=(vala gobject-introspection git meson appstream-glib)
+groups=(gnome)
+options=(debug)
+_commit=0f6c7d65479c54eee54b681836e1ae3c99a9443c # tags/43.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-contacts.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+}
+
+build() {
+ arch-meson $pkgname build
+ 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: