aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/libbpf.az
blob: 9a10bc4551c50f064d7800186f5d6e044d40b1b3 (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
package libbpf {
	description = "the reference library for eBPF development";
	website = "https://github.com/libbpf/libbpf";
	anitya = 141355;

	version# = "1.7.0";
	source = remoteGitHub {
		suffix = "libbpf/libbpf";
		tag = "v"+version;
		checksum = "Gsk3TYDTne6behhdiyRB0Y5GTGECRh2265VY7IQ_VB62vIm7U9oqzEW-Va5Tvi_w";
	};

	env = [ "PREFIX=/system" ];
	early = "cd src";
	writable = true;
	chmod = true;

	exec = make {
		chdir = false;
		configure = nil;
		check = nil;
		install = "make DESTDIR=/work LIBSUBDIR=lib install";
	};

	inputs = [
		elfutils,
		kernel-headers,
	];

	runtime = [ elfutils ];
}