Files
hakurei/internal/rosa/libxslt.go
Ophestra 51d3df2419
All checks were successful
Test / Create distribution (push) Successful in 59s
Test / Sandbox (push) Successful in 2m41s
Test / Hakurei (push) Successful in 3m53s
Test / ShareFS (push) Successful in 3m57s
Test / Hpkg (push) Successful in 4m28s
Test / Sandbox (race detector) (push) Successful in 5m5s
Test / Hakurei (race detector) (push) Successful in 6m9s
Test / Flake checks (push) Successful in 2m26s
internal/rosa/make: split build and check
Doing these together breaks far too many buggy makefiles.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2026-03-01 14:41:34 +09:00

38 lines
782 B
Go

package rosa
import (
"strings"
"hakurei.app/internal/pkg"
)
func (t Toolchain) newLibxslt() pkg.Artifact {
const (
version = "1.1.45"
checksum = "vw72UbREQnA3YDYuZ9-93hDr9BYCaKV6oh_U4Kt4n1Js_na4E-nFj-ksZnZ0kvEK"
)
return t.NewViaMake("libxslt", version, pkg.NewHTTPGet(
nil, "https://download.gnome.org/sources/libxslt/"+
strings.Join(strings.Split(version, ".")[:2], ".")+
"/libxslt-"+version+".tar.xz",
mustDecode(checksum),
), &MakeAttr{
ScriptEarly: `
cd /usr/src/
tar xf libxslt.tar.xz
mv libxslt-` + version + ` libxslt
`,
SourceSuffix: ".tar.xz",
// python libxml2 cyclic dependency
SkipCheck: true,
},
t.Load(XZ),
t.Load(Python),
t.Load(PkgConfig),
t.Load(Libxml2),
)
}
func init() { artifactsF[Libxslt] = Toolchain.newLibxslt }