summaryrefslogtreecommitdiff
path: root/repo/meson/meson.xibuild
blob: b3dfcf49fefac88364852cd2618848a1b39c8f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh

NAME="meson"
DESC="Fast and user friendly build system"

MAKEDEPS="python-setuptools"

PKG_VER=0.63.2
SOURCE="https://github.com/mesonbuild/meson/releases/download/$PKG_VER/meson-$PKG_VER.tar.gz"

ADDITIONAL="
fix-ninja-output-test.patch
skip-broken-tests.patch
"

prepare() {
	apply_patches

	# https://github.com/mesonbuild/meson/issues/10104
	rm -r "$BUILD_ROOT/test cases/linuxlike/13 cmake dependency"
}

build() {
	python setup.py build
}

check() {
	MESON_CI_JOBNAME=thirdparty \
		NINJA=samu \
		NINJA_1_9_OR_NEWER=1 \
		python3 run_tests.py
}

package() {
	python setup.py install --prefix=/usr --root="$PKG_DEST"

	install -Dm644 data/shell-completions/zsh/* -t "$PKG_DEST"/usr/share/zsh/site-functions
	install -Dm644 data/shell-completions/bash/* -t "$PKG_DEST"/usr/share/bash-completion/completions

	install -Dm0755 "$BUILD_ROOT"/meson --prefix=/usr \
 -t "$PKG_DEST"/usr/bin
}