All checks were successful
Test / Create distribution (push) Successful in 1m0s
Test / Sandbox (push) Successful in 2m43s
Test / Hakurei (push) Successful in 3m55s
Test / ShareFS (push) Successful in 4m1s
Test / Hpkg (push) Successful in 4m40s
Test / Sandbox (race detector) (push) Successful in 5m4s
Test / Hakurei (race detector) (push) Successful in 5m57s
Test / Flake checks (push) Successful in 1m46s
For running menuconfig. Signed-off-by: Ophestra <cat@gensokyo.uk>
27 lines
641 B
Go
27 lines
641 B
Go
package rosa
|
|
|
|
import "hakurei.app/internal/pkg"
|
|
|
|
func (t Toolchain) newNcurses() pkg.Artifact {
|
|
const (
|
|
version = "6.6"
|
|
checksum = "XvWp4xi6hR_hH8XUoGY26L_pqBSDapJYulhzZqPuR0KNklqypqNc1yNXU-nOjf5w"
|
|
)
|
|
return t.NewViaMake("ncurses", version, pkg.NewHTTPGetTar(
|
|
nil, "https://ftpmirror.gnu.org/gnu/ncurses/ncurses-"+version+".tar.gz",
|
|
mustDecode(checksum),
|
|
pkg.TarGzip,
|
|
), &MakeAttr{
|
|
// "tests" are actual demo programs, not a test suite.
|
|
SkipCheck: true,
|
|
|
|
Configure: [][2]string{
|
|
{"with-pkg-config"},
|
|
{"enable-pc-files"},
|
|
},
|
|
},
|
|
t.Load(PkgConfig),
|
|
)
|
|
}
|
|
func init() { artifactsF[Ncurses] = Toolchain.newNcurses }
|