blob: 06d6621fc44c7d44cf93c93f16d0eaf8d145f59d (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Maintainer: Eric Engestrom <aur [at] engestrom [dot] ch>
pkgname=muon-meson
pkgver=0.5.0
pkgrel=1
pkgdesc="meson implementation in C"
arch=(x86_64)
url="https://muon.build"
license=(GPL3)
source=("$url/releases/v$pkgver/muon-v$pkgver.tar.gz")
sha256sums=('d657422d4a102b4c7b77317a67a3f816d02f1c2967432b027c7e9f076ffe7079')
depends=(pkgconf curl libarchive)
makedepends=(ninja python-yaml scdoc)
checkdepends=(git)
provides=(muon)
build() {
cd "muon-v$pkgver"
rm -rf build*
msg2 "Building stage 1 (bootstrap)"
./bootstrap.sh build-stage1
msg2 "Building stage 2 (muon from bootstrap)"
build-stage1/muon-bootstrap setup \
-D libarchive=disabled \
-D libcurl=disabled \
-D libpkgconf=enabled \
-D man-pages=disabled \
-D meson-docs=disabled \
-D meson-tests=disabled \
-D readline=builtin \
-D samurai=enabled \
-D static=false \
-D tracy=disabled \
-D ui=disabled \
-D website=disabled \
build-stage2
ninja -C build-stage2
msg2 "Building stage 3 (muon from muon)"
build-stage2/muon setup \
-D libarchive=enabled \
-D libcurl=enabled \
-D libpkgconf=enabled \
-D man-pages=enabled \
-D meson-docs=disabled \
-D readline=builtin \
-D samurai=enabled \
-D static=false \
-D tracy=disabled \
-D ui=disabled \
-D website=disabled \
-D prefix=/usr \
-D b_lto=true \
-D b_pie=true \
build
ninja -C build
}
check() {
# Explicitly chose which test suites to run, to avoid running meson-tests
# and taking a long time to run, but still having a reasonable coverage
# to ensure that the built package works.
cd "muon-v$pkgver/build"
./muon test -R -v -s fmt -s lang -s muon -s unit -s analyze
}
package() {
cd "muon-v$pkgver/build"
DESTDIR="$pkgdir" ./muon install
}
|