mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-04 12:26:24 +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
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=sound-juicer
|
|
pkgver=3.40.0
|
|
pkgrel=0
|
|
pkgdesc="Sound Juicer is a CD ripping tool using GTK+ and GStreamer"
|
|
url="https://wiki.gnome.org/Apps/SoundJuicer"
|
|
arch="all !s390x" # Limited by brasero
|
|
license="GPL-2.0-or-later"
|
|
depends="iso-codes gsettings-desktop-schemas gst-plugins-good"
|
|
makedepends="glib-dev gtk+3.0-dev brasero-dev gstreamer-dev
|
|
gst-plugins-base-dev libmusicbrainz-dev iso-codes-dev itstool libcanberra-dev
|
|
gsettings-desktop-schemas-dev gstreamer-tools libdiscid-dev meson"
|
|
checkdepends="appstream-glib"
|
|
subpackages="$pkgname-lang $pkgname-doc"
|
|
source="https://download.gnome.org/sources/sound-juicer/${pkgver%.*}/sound-juicer-$pkgver.tar.xz"
|
|
|
|
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="
|
|
b0d9720f0c75dfb8809764213e0589978cb265dfc2010f1accb92e7ffdfdc2ac6deb17a4683e9f7f5a6e867d45f87e8f93659ef04bc73ead3b403394a0ba409b sound-juicer-3.40.0.tar.xz
|
|
"
|