internal/rosa: libexpat artifact
All checks were successful
Test / Create distribution (push) Successful in 49s
Test / Sandbox (push) Successful in 2m40s
Test / Hakurei (push) Successful in 3m53s
Test / ShareFS (push) Successful in 4m1s
Test / Hpkg (push) Successful in 4m30s
Test / Sandbox (race detector) (push) Successful in 5m1s
Test / Hakurei (race detector) (push) Successful in 5m58s
Test / Flake checks (push) Successful in 1m50s
All checks were successful
Test / Create distribution (push) Successful in 49s
Test / Sandbox (push) Successful in 2m40s
Test / Hakurei (push) Successful in 3m53s
Test / ShareFS (push) Successful in 4m1s
Test / Hpkg (push) Successful in 4m30s
Test / Sandbox (race detector) (push) Successful in 5m1s
Test / Hakurei (race detector) (push) Successful in 5m58s
Test / Flake checks (push) Successful in 1m50s
Required by wayland. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
@@ -168,6 +168,8 @@ func main() {
|
|||||||
p = rosa.Go
|
p = rosa.Go
|
||||||
case "kernel-headers":
|
case "kernel-headers":
|
||||||
p = rosa.KernelHeaders
|
p = rosa.KernelHeaders
|
||||||
|
case "libexpat":
|
||||||
|
p = rosa.Libexpat
|
||||||
case "libffi":
|
case "libffi":
|
||||||
p = rosa.Libffi
|
p = rosa.Libffi
|
||||||
case "m4":
|
case "m4":
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ const (
|
|||||||
Git
|
Git
|
||||||
Go
|
Go
|
||||||
KernelHeaders
|
KernelHeaders
|
||||||
|
Libexpat
|
||||||
Libffi
|
Libffi
|
||||||
M4
|
M4
|
||||||
Make
|
Make
|
||||||
|
|||||||
33
internal/rosa/libexpat.go
Normal file
33
internal/rosa/libexpat.go
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (t Toolchain) newLibexpat() pkg.Artifact {
|
||||||
|
const (
|
||||||
|
version = "2.7.3"
|
||||||
|
checksum = "GmkoD23nRi9cMT0cgG1XRMrZWD82UcOMzkkvP1gkwSFWCBgeSXMuoLpa8-v8kxW-"
|
||||||
|
)
|
||||||
|
return t.New("libexpat-"+version, []pkg.Artifact{
|
||||||
|
t.Load(Make),
|
||||||
|
t.Load(Bash),
|
||||||
|
}, nil, nil, `
|
||||||
|
cd "$(mktemp -d)"
|
||||||
|
/usr/src/libexpat/configure \
|
||||||
|
--prefix=/system \
|
||||||
|
--build="${ROSA_TRIPLE}"
|
||||||
|
make "-j$(nproc)" check
|
||||||
|
make DESTDIR=/work install
|
||||||
|
`, pkg.Path(AbsUsrSrc.Append("libexpat"), false, pkg.NewHTTPGetTar(
|
||||||
|
nil,
|
||||||
|
"https://github.com/libexpat/libexpat/releases/download/"+
|
||||||
|
"R_"+strings.ReplaceAll(version, ".", "_")+"/"+
|
||||||
|
"expat-"+version+".tar.bz2",
|
||||||
|
mustDecode(checksum),
|
||||||
|
pkg.TarBzip2,
|
||||||
|
)))
|
||||||
|
}
|
||||||
|
func init() { artifactsF[Libexpat] = Toolchain.newLibexpat }
|
||||||
Reference in New Issue
Block a user