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

import (
	"strings"

	"hakurei.app/internal/pkg"
)

func (t Toolchain) newLibexpat() pkg.Artifact {
	const (
		version  = "2.7.3"
		checksum = "GmkoD23nRi9cMT0cgG1XRMrZWD82UcOMzkkvP1gkwSFWCBgeSXMuoLpa8-v8kxW-"
	)
	return t.New("libexpat-"+version, 0, []pkg.Artifact{
		t.Load(Make),
		t.Load(Bash),
	}, nil, nil, `
cd "$(mktemp -d)"
/usr/src/libexpat/configure \
	--prefix=/system \
	--build="${ROSA_TRIPLE}" \
	--enable-static
make "-j$(nproc)" check
make DESTDIR=/work install
`, pkg.Path(AbsUsrSrc.Append("libexpat"), false, pkg.NewHTTPGetTar(
		nil, "https://github.com/libexpat/libexpat/releases/download/"+
			"R_"+strings.ReplaceAll(version, ".", "_")+"/"+
			"expat-"+version+".tar.bz2",
		mustDecode(checksum),
		pkg.TarBzip2,
	)))
}
func init() { artifactsF[Libexpat] = Toolchain.newLibexpat }