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
37 lines
903 B
Text
37 lines
903 B
Text
# Contributor: Krassy Boykinov <kboykinov@teamcentrixx.com>
|
|
# Maintainer: Krassy Boykinov <kboykinov@teamcentrixx.com>
|
|
pkgname=livi
|
|
pkgver=0.3.1
|
|
pkgrel=0
|
|
pkgdesc="A small video player targeting mobile devices"
|
|
url="https://gitlab.gnome.org/guidog/livi"
|
|
arch="all"
|
|
license="LGPL-2.1-or-later"
|
|
makedepends="
|
|
desktop-file-utils
|
|
gst-plugins-bad-dev
|
|
gstreamer-dev
|
|
gtk4.0-dev
|
|
libadwaita-dev
|
|
meson
|
|
"
|
|
checkdepends="appstream-glib"
|
|
source="https://gitlab.gnome.org/guidog/livi/-/archive/v$pkgver/livi-v$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-v$pkgver"
|
|
|
|
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="
|
|
6a86278756ae35b37fc1e99abb0ac5918e3ca8fad041544087ea6a5c8377b67586e6c1f1e9d45390e5f0003ade1550ab580898aad750d7325f3cf0698575f6b1 livi-v0.3.1.tar.gz
|
|
"
|