aports/community/plattenalbum/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

41 lines
872 B
Text

# Contributor: fossdd <fossdd@pwned.life>
# Maintainer: fossdd <fossdd@pwned.life>
pkgname=plattenalbum
pkgver=2.3.0
pkgrel=0
pkgdesc="Browse music with MPD"
url="https://github.com/SoongNoonien/plattenalbum"
arch="noarch"
license="GPL-3.0-only"
depends="
gettext
libadwaita
py3-gobject3
py3-mpd2
python3
"
makedepends="
desktop-file-utils
glib-dev
gtk-update-icon-cache
meson
"
subpackages="$pkgname-lang"
source="$pkgname-$pkgver.tar.gz::https://github.com/SoongNoonien/plattenalbum/archive/refs/tags/v$pkgver.tar.gz"
build() {
abuild-meson . output
meson compile -C output
}
check() {
meson test -C output
}
package() {
meson install --no-rebuild --destdir "$pkgdir" -C output
}
sha512sums="
98fd10980024a121ce80f86f0074361dc25d8eacfe9a0cc9490f333b3f1cf610861b59316706bee6db55811d19298623f3ed43de345a79fb77bf541fa874a6c0 plattenalbum-2.3.0.tar.gz
"