All checks were successful
Test / Create distribution (push) Successful in 59s
Test / Sandbox (push) Successful in 2m48s
Test / Hakurei (push) Successful in 3m36s
Test / ShareFS (push) Successful in 3m47s
Test / Sandbox (race detector) (push) Successful in 4m54s
Test / Hakurei (race detector) (push) Successful in 5m53s
Test / Flake checks (push) Successful in 1m29s
This enables release monitoring for all applicable projects. Signed-off-by: Ophestra <cat@gensokyo.uk>
37 lines
860 B
Go
37 lines
860 B
Go
package rosa
|
|
|
|
import "hakurei.app/internal/pkg"
|
|
|
|
func (t Toolchain) newNcurses() (pkg.Artifact, string) {
|
|
const (
|
|
version = "6.6"
|
|
checksum = "XvWp4xi6hR_hH8XUoGY26L_pqBSDapJYulhzZqPuR0KNklqypqNc1yNXU-nOjf5w"
|
|
)
|
|
return t.NewPackage("ncurses", version, pkg.NewHTTPGetTar(
|
|
nil, "https://ftpmirror.gnu.org/gnu/ncurses/ncurses-"+version+".tar.gz",
|
|
mustDecode(checksum),
|
|
pkg.TarGzip,
|
|
), nil, &MakeHelper{
|
|
// "tests" are actual demo programs, not a test suite.
|
|
SkipCheck: true,
|
|
|
|
Configure: [][2]string{
|
|
{"with-pkg-config"},
|
|
{"enable-pc-files"},
|
|
},
|
|
},
|
|
PkgConfig,
|
|
), version
|
|
}
|
|
func init() {
|
|
artifactsM[Ncurses] = Metadata{
|
|
f: Toolchain.newNcurses,
|
|
|
|
Name: "ncurses",
|
|
Description: "a free software emulation of curses in System V Release 4.0 (SVr4)",
|
|
Website: "https://invisible-island.net/ncurses/",
|
|
|
|
ID: 2057,
|
|
}
|
|
}
|