package rosa import ( "strings" "hakurei.app/internal/pkg" ) func (t Toolchain) newLibexpat() pkg.Artifact { const ( version = "2.7.3" checksum = "GmkoD23nRi9cMT0cgG1XRMrZWD82UcOMzkkvP1gkwSFWCBgeSXMuoLpa8-v8kxW-" ) return t.NewViaMake("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), ) } func init() { artifactsF[Libexpat] = Toolchain.newLibexpat }