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

import (
	"strings"

	"hakurei.app/internal/pkg"
)

func (t Toolchain) newLibexpat() (pkg.Artifact, string) {
	const (
		version  = "2.8.1"
		checksum = "iMEtbOJhQfGof2GxSlxffQSI1va_NDDQ9VIuqcPbNZ0291Dr8wttD5QecYyjIQap"
	)
	return t.NewPackage("libexpat", version, newFromGitHubRelease(
		"libexpat/libexpat",
		"R_"+strings.ReplaceAll(version, ".", "_"),
		"expat-"+version+".tar.bz2",
		checksum,
		pkg.TarBzip2,
	), nil, (*MakeHelper)(nil),
		Bash,
	), version
}
func init() {
	artifactsM[Libexpat] = Metadata{
		f: Toolchain.newLibexpat,

		Name:        "libexpat",
		Description: "a stream-oriented XML parser library",
		Website:     "https://libexpat.github.io/",

		ID: 770,
	}
}