aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/muon.az
blob: 512844a99f56cad19217f9ed3689df5f36ddd06d (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
package meson-tests {
	description = "tests from meson/test cases, updated alongside muon";
	website = "https://github.com/muon-build/meson-tests";
	exclude = true;

	version# = "0bbaa42e7ba553356fbec038e8b40cf89f90da82";
	output = remoteTar {
		url = "https://github.com/muon-build/meson-tests/archive/"+
			version+".tar.gz";
		checksum = "W_yNC2Id1aGBXLmBhrQ53UARVBl-nZ2bDZJcmZDaE4GyoZyj6tSURojuTyWgG1U8";
		compress = gzip;
	};
}

package muon {
	description = "meson implementation in C";
	website = "https://muon.build";
	anitya = 391173;

	version# = "0.6.0";
	source = remoteTar {
		url = "https://git.sr.ht/~lattis/muon/archive/"+version+".tar.gz";
		checksum = "DiRw1dTaHlL5d3TNK8gykFHI_BAWK7ERooSmVC-kltUkjOubWkN9b-DG21a1ETCe";
		compress = gzip;
	};
	extra = [ meson-tests ];

	writable = true;
	early = `
chmod +w subprojects
cp -r ../extra/meson-tests subprojects
chmod -R +w subprojects/meson-tests
sed -i '/common.220 fs module/d' subprojects/meson-tests/meson.build
`;

	exec = generic {
		build = `
(cd /usr/src/muon && CC=cc ./bootstrap.sh /boot)
/boot/muon-bootstrap setup \
	-Dprefix=/system \
	-Dbuildtype=release \
	-Dlibcurl=disabled \
	-Dlibarchive=disabled \
	-Dlibpkgconf=disabled \
	-Dtracy=disabled \
	-Dmeson-docs=disabled \
	-Dmeson-tests=enabled \
	-Dwebsite=disabled \
	/usr/src/muon
/boot/muon-bootstrap samu `+jobsFlagE+`
`;
		check = "./muon test "+jobsFlagE+" -Rv\n";
		install = "./muon install -d /work\n";
	};

	inputs = [
		python-early,
		kernel-headers,
	];

	runtime = [ pkg-config ];
}