aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/libexpat.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-03-01 23:54:40 +0900
committerOphestra <cat@gensokyo.uk>2026-03-02 01:24:50 +0900
commitcc60e0d15d79916a69c8a1caeb3c4611351bb6c4 (patch)
tree67f4f59ed7ba7b18af51338e56ffa8d9acf52da6 /internal/rosa/libexpat.go
parent9deaf853f0676ee4475468bffd35aae7e1160a74 (diff)
internal/rosa/make: migrate to helper interface
This also updates all affected artifacts to use new behaviour. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/libexpat.go')
-rw-r--r--internal/rosa/libexpat.go10
1 files changed, 3 insertions, 7 deletions
diff --git a/internal/rosa/libexpat.go b/internal/rosa/libexpat.go
index 3e094f7b..3cda1226 100644
--- a/internal/rosa/libexpat.go
+++ b/internal/rosa/libexpat.go
@@ -11,18 +11,14 @@ func (t Toolchain) newLibexpat() pkg.Artifact {
version = "2.7.3"
checksum = "GmkoD23nRi9cMT0cgG1XRMrZWD82UcOMzkkvP1gkwSFWCBgeSXMuoLpa8-v8kxW-"
)
- return t.NewViaMake("libexpat", version, pkg.NewHTTPGetTar(
+ 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,
- ), &MakeAttr{
- Configure: [][2]string{
- {"enable-static"},
- },
- },
- t.Load(Bash),
+ ), nil, (*MakeHelper)(nil),
+ Bash,
)
}
func init() { artifactsF[Libexpat] = Toolchain.newLibexpat }