All checks were successful
Test / Create distribution (push) Successful in 59s
Test / Sandbox (push) Successful in 2m32s
Test / Hakurei (push) Successful in 3m39s
Test / ShareFS (push) Successful in 3m44s
Test / Sandbox (race detector) (push) Successful in 5m0s
Test / Hakurei (race detector) (push) Successful in 5m56s
Test / Flake checks (push) Successful in 1m29s
This had to be done out-of-band because there was no way to efficiently represent these within Artifact. Signed-off-by: Ophestra <cat@gensokyo.uk>
41 lines
860 B
Go
41 lines
860 B
Go
package rosa
|
|
|
|
import "hakurei.app/internal/pkg"
|
|
|
|
func (t Toolchain) newProcps() (pkg.Artifact, string) {
|
|
const (
|
|
version = "4.0.6"
|
|
checksum = "pl_fZLvDlv6iZTkm8l_tHFpzTDVFGCiSJEs3eu0zAX6u36AV36P_En8K7JPScRWM"
|
|
)
|
|
return t.NewPackage("procps", version, pkg.NewHTTPGetTar(
|
|
nil, "https://gitlab.com/procps-ng/procps/-/archive/"+
|
|
"v"+version+"/procps-v"+version+".tar.bz2",
|
|
mustDecode(checksum),
|
|
pkg.TarBzip2,
|
|
), nil, &MakeHelper{
|
|
Generate: "./autogen.sh",
|
|
Configure: [][2]string{
|
|
{"without-ncurses"},
|
|
},
|
|
},
|
|
M4,
|
|
Perl,
|
|
Autoconf,
|
|
Automake,
|
|
Gettext,
|
|
Libtool,
|
|
|
|
Gzip,
|
|
PkgConfig,
|
|
), version
|
|
}
|
|
func init() {
|
|
artifactsM[Procps] = Metadata{
|
|
f: Toolchain.newProcps,
|
|
|
|
Name: "procps",
|
|
Description: "command line and full screen utilities for browsing procfs",
|
|
Website: "https://gitlab.com/procps-ng/procps",
|
|
}
|
|
}
|