aports/testing/identities/APKBUILD
Sertonix 6bd45b53fb */*: remove --no-rebuild from meson test
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
2025-05-09 20:48:14 +00:00

39 lines
831 B
Text

# Maintainer: Kateřina Medvědová <k8ie@mcld.eu>
pkgname=identities
pkgver=0.1.4
pkgrel=0
pkgdesc="Modern password-store client made for GNOME"
url="https://github.com/k8ieone/identities"
arch="noarch"
license="GPL-3.0-only"
depends="
python3
py3-gnupg
py3-otp
libadwaita
py3-gobject3
"
makedepends="
meson
blueprint-compiler
"
checkdepends="appstream-glib desktop-file-utils"
source="https://github.com/k8ieone/identities/archive/$pkgver/identities-$pkgver.tar.gz"
build() {
abuild-meson . output
meson compile -C output
}
check() {
meson test --print-errorlogs -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
e425b79031127d153b104d4a4b32fb4b93692c2bd8b5f26650ff0f6e1fa42ec75b0be3159fa971de2276012cf98f7f6a5e36f306bc75576ad9a958458bed1716 identities-0.1.4.tar.gz
"