All checks were successful
Test / Create distribution (push) Successful in 1m0s
Test / Sandbox (push) Successful in 2m38s
Test / Hakurei (push) Successful in 3m55s
Test / ShareFS (push) Successful in 3m56s
Test / Hpkg (push) Successful in 4m24s
Test / Sandbox (race detector) (push) Successful in 5m1s
Test / Hakurei (race detector) (push) Successful in 3m24s
Test / Flake checks (push) Successful in 1m54s
Another nonstandard glibc extension used by elfutils. Signed-off-by: Ophestra <cat@gensokyo.uk>
34 lines
710 B
Go
34 lines
710 B
Go
package rosa
|
|
|
|
import "hakurei.app/internal/pkg"
|
|
|
|
func (t Toolchain) newMuslFts() pkg.Artifact {
|
|
const (
|
|
version = "1.2.7"
|
|
checksum = "N_p_ZApX3eHt7xoDCw1hLf6XdJOw7ZSx7xPvpvAP0knG2zgU0zeN5w8tt5Pg60XJ"
|
|
)
|
|
return t.NewViaMake("musl-fts", version, pkg.NewHTTPGetTar(
|
|
nil, "https://github.com/void-linux/musl-fts/archive/refs/tags/"+
|
|
"v"+version+".tar.gz",
|
|
mustDecode(checksum),
|
|
pkg.TarGzip,
|
|
), &MakeAttr{
|
|
Writable: true,
|
|
Env: []string{
|
|
"CC=cc -fPIC",
|
|
},
|
|
ScriptEarly: `
|
|
cd /usr/src/musl-fts
|
|
./bootstrap.sh
|
|
`,
|
|
},
|
|
t.Load(M4),
|
|
t.Load(Perl),
|
|
t.Load(Autoconf),
|
|
t.Load(Automake),
|
|
t.Load(Libtool),
|
|
t.Load(PkgConfig),
|
|
)
|
|
}
|
|
func init() { artifactsF[MuslFts] = Toolchain.newMuslFts }
|