aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/libcap.go
blob: 81a9ec632e3ac7f5279d4077f56d4f41f0d4f2c9 (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
package rosa

import "hakurei.app/internal/pkg"

func (t Toolchain) newLibcap() pkg.Artifact {
	const (
		version  = "2.77"
		checksum = "2GOTFU4cl2QoS7Dv5wh0c9-hxsQwIzMB9Y_gfAo5xKHqcM13fiHt1RbPkfemzjmB"
	)
	return t.NewPackage("libcap", version, pkg.NewHTTPGetTar(
		nil, "https://git.kernel.org/pub/scm/libs/libcap/libcap.git/"+
			"snapshot/libcap-"+version+".tar.gz",
		mustDecode(checksum),
		pkg.TarGzip,
	), &PackageAttr{
		// uses source tree as scratch space
		Writable: true,
		Chmod:    true,

		Env: []string{
			"prefix=/system",
			"lib=lib",
		},
		ScriptEarly: `
ln -s ../system/bin/bash /bin/
`,
	}, &MakeHelper{
		SkipConfigure: true,
		InPlace:       true,

		Make: []string{
			"CC=cc",
			"all",
		},
		Check: []string{
			"CC=cc",
			"test",
		},
	},
		Bash,
		Diffutils,
	)
}
func init() { artifactsF[Libcap] = Toolchain.newLibcap }