All checks were successful
Test / Create distribution (push) Successful in 59s
Test / Sandbox (push) Successful in 2m32s
Test / Hakurei (push) Successful in 3m39s
Test / ShareFS (push) Successful in 3m44s
Test / Sandbox (race detector) (push) Successful in 5m0s
Test / Hakurei (race detector) (push) Successful in 5m56s
Test / Flake checks (push) Successful in 1m29s
This had to be done out-of-band because there was no way to efficiently represent these within Artifact. Signed-off-by: Ophestra <cat@gensokyo.uk>
33 lines
748 B
Go
33 lines
748 B
Go
package rosa
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"hakurei.app/internal/pkg"
|
|
)
|
|
|
|
func (t Toolchain) newLibexpat() (pkg.Artifact, string) {
|
|
const (
|
|
version = "2.7.3"
|
|
checksum = "GmkoD23nRi9cMT0cgG1XRMrZWD82UcOMzkkvP1gkwSFWCBgeSXMuoLpa8-v8kxW-"
|
|
)
|
|
return t.NewPackage("libexpat", version, pkg.NewHTTPGetTar(
|
|
nil, "https://github.com/libexpat/libexpat/releases/download/"+
|
|
"R_"+strings.ReplaceAll(version, ".", "_")+"/"+
|
|
"expat-"+version+".tar.bz2",
|
|
mustDecode(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/",
|
|
}
|
|
}
|