blob: 4952f20c86e5b97283c9a5b26916c294627d25d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Maintainer:
# Contributor: Philip Goto <philip.goto@gmail.com>
# Contributor: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Ionut Biru <ibiru@archlinux.org>
## useful links
# https://wiki.gnome.org/Apps/Contacts
# https://gitlab.gnome.org/GNOME/gnome-contacts
_pkgname="gnome-contacts"
pkgname="$_pkgname-git"
pkgver=46.0.r15.g4ec2661
pkgrel=1
pkgdesc="Contacts Manager for GNOME"
url="https://gitlab.gnome.org/GNOME/gnome-contacts"
license=('GPL-2.0-or-later')
arch=('x86_64')
depends=(
evolution-data-server
folks
gnome-online-accounts
gtk4
libadwaita
libgee
libportal-gtk4
qrencode
)
makedepends=(
appstream-glib
git
gobject-introspection
meson
vala
)
provides=("$_pkgname=${pkgver%%.r*}")
conflicts=("$_pkgname")
_pkgsrc="$_pkgname"
source=("$_pkgsrc"::"git+$url")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgsrc"
git describe --long --tags --abbrev=7 \
| sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
arch-meson "$_pkgsrc" build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "$pkgdir"
}
|