mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-07 04:44:57 +02:00
meson 1.7.0 and later don't include test build targets in the default build target. With --no-rebuild the test targets aren't build at all. Removing --no-rebuild shouldn't cause any false rebuilds since the files aren't changed between the build() and check() step. Fixes https://gitlab.alpinelinux.org/alpine/aports/-/issues/16891 Ref https://github.com/mesonbuild/meson/pull/10413
46 lines
1 KiB
Text
46 lines
1 KiB
Text
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
|
|
# Maintainer: team/gnome <pabloyoyoista@postmarketos.org>
|
|
pkgname=gnome-contacts
|
|
pkgver=48.0
|
|
pkgrel=0
|
|
pkgdesc="A contacts manager for GNOME"
|
|
url="https://apps.gnome.org/Contacts"
|
|
arch="all"
|
|
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
|
|
gstreamer-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 --print-errorlogs -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
sha512sums="
|
|
5563ea70f04f34880943eeb54ea3f5c6ef2b74e1c74c82fa87f3a3ff22ada03aba24f4f0b00ddc2f1616317ebf2596ed5f65eebc817ab6e00f96ef71ce1ed021 gnome-contacts-48.0.tar.xz
|
|
"
|