blob: c6c1a9b16e19bfa38f4f75d33fd80c97088d9276 (
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
|
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Maintainer: team/gnome <ablocorrea@hotmail.com>
pkgname=gnome-contacts
pkgver=44.0
pkgrel=1
pkgdesc="A contacts manager for GNOME"
url="https://wiki.gnome.org/Apps/Contacts"
# s390x: doubt anyone would use this on a mainframe
arch="all !s390x"
license="GPL-2.0-or-later"
makedepends="
desktop-file-utils
evolution-data-server-dev
folks-dev
glib-dev
gnome-desktop-dev
gnome-online-accounts-dev
gtk4.0-dev
libadwaita-dev
libgee-dev
libportal-dev
libqrencode-dev
meson
telepathy-glib-dev
vala
"
checkdepends="appstream-glib"
subpackages="$pkgname-lang $pkgname-doc"
source="https://download.gnome.org/sources/gnome-contacts/${pkgver%.*}/gnome-contacts-$pkgver.tar.xz"
build() {
abuild-meson -Db_lto=true . output
meson compile -C output
}
check() {
meson test --no-rebuild --print-errorlogs -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
f25a368317923c46f5700359e3fed86f85a155c58adb275ba7d884975debe78594e1da58a95633a33a281cbc78f41824f4ab38b50ae01f4f9f8e38f3f1906849 gnome-contacts-44.0.tar.xz
"
|