mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-09 15:04:14 +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
43 lines
934 B
Text
43 lines
934 B
Text
# Contributor: Luca Weiss <luca@lucaweiss.eu>
|
|
# Maintainer: Luca Weiss <luca@lucaweiss.eu>
|
|
pkgname=lpa-gtk
|
|
pkgver=0.2
|
|
pkgrel=0
|
|
pkgdesc="Download and manage eSIM profiles"
|
|
url="https://codeberg.org/lucaweiss/lpa-gtk"
|
|
license="GPL-3.0-only"
|
|
arch="noarch !x86" # blocked by lpac
|
|
depends="
|
|
gtk4.0
|
|
libadwaita
|
|
lpac
|
|
py3-gobject3
|
|
"
|
|
checkdepends="appstream"
|
|
makedepends="
|
|
blueprint-compiler
|
|
desktop-file-utils
|
|
gtk4.0-dev
|
|
libadwaita-dev
|
|
meson
|
|
"
|
|
source="$pkgname-$pkgver.tar.gz::https://codeberg.org/lucaweiss/lpa-gtk/archive/$pkgver.tar.gz"
|
|
subpackages="$pkgname-pyc"
|
|
builddir="$srcdir/$pkgname"
|
|
|
|
build() {
|
|
abuild-meson . output
|
|
meson compile -C output
|
|
}
|
|
|
|
check() {
|
|
meson test --print-errorlogs -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install -C output
|
|
}
|
|
|
|
sha512sums="
|
|
a29034512d8dcd1e50feee05550f5986afd56a960a4bdd5227c29558356dd98a05277dbb01f1bd09fe93ff51a9c3b51e43e5c61e382d237af054090c8ed5adc6 lpa-gtk-0.2.tar.gz
|
|
"
|