Files
hakurei/internal/rosa/procps.go
Ophestra 30eb0d6a61
All checks were successful
Test / Create distribution (push) Successful in 1m5s
Test / Sandbox (push) Successful in 2m55s
Test / ShareFS (push) Successful in 3m46s
Test / Hakurei (push) Successful in 3m57s
Test / Sandbox (race detector) (push) Successful in 5m25s
Test / Hakurei (race detector) (push) Successful in 6m29s
Test / Flake checks (push) Successful in 1m21s
internal/rosa: key metadata by string
For upcoming azalea integration. The API is quite ugly right now to ease migration.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2026-05-17 15:56:53 +09:00

40 lines
765 B
Go

package rosa
import "hakurei.app/internal/pkg"
func (t Toolchain) newProcps(s *S) (pkg.Artifact, string) {
const (
version = "4.0.6"
checksum = "pl_fZLvDlv6iZTkm8l_tHFpzTDVFGCiSJEs3eu0zAX6u36AV36P_En8K7JPScRWM"
)
return s.NewPackage(t, "procps", version, newFromGitLab(
"gitlab.com",
"procps-ng/procps",
"v"+version,
checksum,
), nil, &MakeHelper{
Generate: "./autogen.sh",
Configure: []KV{
{"without-ncurses"},
},
},
Automake,
Gettext,
Libtool,
Gzip,
PkgConfig,
), version
}
func init() {
native.MustRegister(&Artifact{
f: Toolchain.newProcps,
Name: "procps",
Description: "command line and full screen utilities for browsing procfs",
Website: "https://gitlab.com/procps-ng/procps",
ID: 3708,
})
}