mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-07 18:45:05 +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
36 lines
784 B
Text
36 lines
784 B
Text
maintainer="fossdd <fossdd@pwned.life>"
|
|
pkgname=manuals
|
|
pkgver=48.1
|
|
pkgrel=0
|
|
pkgdesc="Install, Browse, and Search developer documentation"
|
|
url="https://gitlab.gnome.org/chergert/manuals"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
makedepends="
|
|
desktop-file-utils
|
|
flatpak-dev
|
|
gom-dev
|
|
libdex-dev
|
|
libpanel-dev
|
|
meson
|
|
webkit2gtk-6.0-dev
|
|
"
|
|
source="https://gitlab.gnome.org/chergert/manuals/-/archive/$pkgver/manuals-$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="
|
|
df620c367129436fab1b5381576de616780ff8457af9bf314e7fcb80a101b886900bd94e09ab820f0872d54fcbe10e026eea70e888c15955b21e6b015ae2c803 manuals-48.1.tar.gz
|
|
"
|