mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-07 12:54:32 +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
45 lines
1,012 B
Text
45 lines
1,012 B
Text
# Contributor: knuxify <knuxify@gmail.com>
|
|
# Maintainer: team/gnome <knuxify@gmail.com>
|
|
pkgname=gnome-connections
|
|
pkgver=48.0
|
|
pkgrel=0
|
|
pkgdesc="Remote desktop client for the GNOME desktop environment"
|
|
url="https://apps.gnome.org/Connections"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
depends_doc="yelp"
|
|
makedepends="
|
|
desktop-file-utils
|
|
glib-dev
|
|
gtk+3.0-dev
|
|
gtk-frdp-dev
|
|
gtk-vnc-dev
|
|
itstool
|
|
libhandy1-dev
|
|
libsecret-dev
|
|
libxml2-dev
|
|
meson
|
|
vala
|
|
"
|
|
checkdepends="appstream-glib"
|
|
subpackages="$pkgname-doc $pkgname-lang"
|
|
source="https://download.gnome.org/sources/gnome-connections/${pkgver%.*}/gnome-connections-$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="
|
|
49e74d5c0a278e1669982da6f013a7c9c15d7fde8e9b46a6c6201ef618474d486f9e21e558804f0466317a8463bb55f7b8de2b205c976124e86463be7e0a1ff6 gnome-connections-48.0.tar.xz
|
|
"
|