internal/rosa: libxslt artifact
All checks were successful
Test / Create distribution (push) Successful in 32s
Test / Hakurei (push) Successful in 51s
Test / Sandbox (push) Successful in 1m50s
Test / Sandbox (race detector) (push) Successful in 2m38s
Test / ShareFS (push) Successful in 3m0s
Test / Hakurei (race detector) (push) Successful in 3m36s
Test / Hpkg (push) Successful in 3m35s
Test / Flake checks (push) Successful in 2m0s
All checks were successful
Test / Create distribution (push) Successful in 32s
Test / Hakurei (push) Successful in 51s
Test / Sandbox (push) Successful in 1m50s
Test / Sandbox (race detector) (push) Successful in 2m38s
Test / ShareFS (push) Successful in 3m0s
Test / Hakurei (race detector) (push) Successful in 3m36s
Test / Hpkg (push) Successful in 3m35s
Test / Flake checks (push) Successful in 2m0s
For building documentation that cannot be turned off. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
@@ -56,6 +56,7 @@ const (
|
|||||||
Libseccomp
|
Libseccomp
|
||||||
Libucontext
|
Libucontext
|
||||||
Libxml2
|
Libxml2
|
||||||
|
Libxslt
|
||||||
M4
|
M4
|
||||||
MPC
|
MPC
|
||||||
MPFR
|
MPFR
|
||||||
@@ -189,6 +190,7 @@ func ResolveName(name string) (p PArtifact, ok bool) {
|
|||||||
"libseccomp": Libseccomp,
|
"libseccomp": Libseccomp,
|
||||||
"libucontext": Libucontext,
|
"libucontext": Libucontext,
|
||||||
"libxml2": Libxml2,
|
"libxml2": Libxml2,
|
||||||
|
"libxslt": Libxslt,
|
||||||
"libffi": Libffi,
|
"libffi": Libffi,
|
||||||
"libgd": Libgd,
|
"libgd": Libgd,
|
||||||
"libtool": Libtool,
|
"libtool": Libtool,
|
||||||
|
|||||||
40
internal/rosa/libxslt.go
Normal file
40
internal/rosa/libxslt.go
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
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
|
||||||
|
`,
|
||||||
|
Configure: [][2]string{
|
||||||
|
{"enable-static"},
|
||||||
|
},
|
||||||
|
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 }
|
||||||
Reference in New Issue
Block a user