aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/libxml2.go
blob: a5f5e3c2f03d15a4458952f2092047586d283497 (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 rosa

import "hakurei.app/internal/pkg"

func (t Toolchain) newLibxml2() (pkg.Artifact, string) {
	const (
		version  = "2.15.3"
		checksum = "oWkNe53c3d4Lt4OzrXPHBcOLHJ3TWqpa0x7B7bh_DyZ-uIMiplpdZjQRgRWVal2h"
	)
	return t.NewPackage("libxml2", version, t.newTagRemote(
		"https://gitlab.gnome.org/GNOME/libxml2.git",
		"v"+version, checksum,
	), &PackageAttr{
		// can't create shell.out: Read-only file system
		Writable: true,
	}, (*MesonHelper)(nil),
		Git,
		Diffutils,
	), version
}
func init() {
	artifactsM[Libxml2] = Metadata{
		f: Toolchain.newLibxml2,

		Name:        "libxml2",
		Description: "an XML toolkit implemented in C",
		Website:     "https://gitlab.gnome.org/GNOME/libxml2/",

		ID: 1783,
	}
}