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

import "hakurei.app/internal/pkg"

func (t Toolchain) newLibxslt() (pkg.Artifact, string) {
	const (
		version  = "1.1.45"
		checksum = "MZc_dyUWpHChkWDKa5iycrECxBsRd4ZMbYfL4VojTbung593mlH2tHGmxYB6NFYT"
	)
	return t.NewPackage("libxslt", version, t.NewViaGit(
		"https://gitlab.gnome.org/GNOME/libxslt.git",
		"refs/tags/v"+version,
		mustDecode(checksum),
	), nil, &MakeHelper{
		Generate: "NOCONFIGURE=1 ./autogen.sh",

		// python libxml2 cyclic dependency
		SkipCheck: true,
	},
		Automake,
		Libtool,
		Python,
		PkgConfig,

		Libxml2,
	), version
}
func init() {
	artifactsM[Libxslt] = Metadata{
		f: Toolchain.newLibxslt,

		Name:        "libxslt",
		Description: "an XSLT processor based on libxml2",
		Website:     "https://gitlab.gnome.org/GNOME/libxslt/",

		Dependencies: P{
			Libxml2,
		},

		ID: 13301,
	}
}