Date: Sunday, March 8, 2020 @ 06:14:44 Author: heftig Revision: 377007
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 377004, gnome-contacts/trunk/PKGBUILD) ----------+ PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) Copied: gnome-contacts/repos/gnome-unstable-x86_64/PKGBUILD (from rev 377004, gnome-contacts/trunk/PKGBUILD) =================================================================== --- gnome-unstable-x86_64/PKGBUILD (rev 0) +++ gnome-unstable-x86_64/PKGBUILD 2020-03-08 06:14:44 UTC (rev 377007) @@ -0,0 +1,39 @@ +# Maintainer: Jan Alexander Steffens (heftig) <jan.steff...@gmail.com> +# Contributor: Ionut Biru <ib...@archlinux.org> + +pkgname=gnome-contacts +pkgver=3.35.90+48+g4776726 +pkgrel=1 +pkgdesc="Contacts Manager for GNOME" +url="https://wiki.gnome.org/Apps/Contacts" +arch=(x86_64) +license=(GPL2) +depends=(gtk3 folks gnome-desktop dconf gnome-online-accounts libgee cheese + libhandy) +makedepends=(vala gobject-introspection git meson) +groups=(gnome) +_commit=4776726c29400f3e83e9e105c4cac2851c204ec3 # master +source=("git+https://gitlab.gnome.org/GNOME/gnome-contacts.git#commit=$_commit") +sha256sums=('SKIP') + +pkgver() { + cd $pkgname + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd $pkgname +} + +build() { + arch-meson $pkgname build -D docs=true + ninja -C build +} + +check() { + meson test -C build --print-errorlogs +} + +package() { + DESTDIR="$pkgdir" meson install -C build +}