All checks were successful
Test / Create distribution (push) Successful in 49s
Test / Sandbox (push) Successful in 2m56s
Test / ShareFS (push) Successful in 4m48s
Test / Sandbox (race detector) (push) Successful in 5m22s
Test / Hpkg (push) Successful in 5m34s
Test / Hakurei (push) Successful in 5m44s
Test / Hakurei (race detector) (push) Successful in 7m35s
Test / Flake checks (push) Successful in 1m44s
This is required for compiling the toolchain and many other programs. Signed-off-by: Ophestra <cat@gensokyo.uk>
32 lines
839 B
Go
32 lines
839 B
Go
package rosa
|
|
|
|
import "hakurei.app/internal/pkg"
|
|
|
|
// NewCMake returns a [pkg.Artifact] containing an installation of CMake.
|
|
func (t Toolchain) NewCMake() pkg.Artifact {
|
|
const (
|
|
version = "4.2.1"
|
|
checksum = "Y3OdbMsob6Xk2y1DCME6z4Fryb5_TkFD7knRT8dTNIRtSqbiCJyyDN9AxggN_I75"
|
|
)
|
|
return t.New("cmake-"+version, []pkg.Artifact{
|
|
t.NewMake(),
|
|
t.NewKernelHeaders(),
|
|
}, nil, nil, `
|
|
# expected to be writable in the copy made during bootstrap
|
|
chmod -R +w /usr/src/cmake/Tests
|
|
|
|
cd "$(mktemp -d)"
|
|
/usr/src/cmake/bootstrap \
|
|
--prefix=/system -- \
|
|
-DCMAKE_USE_OPENSSL=OFF
|
|
make "-j$(nproc)"
|
|
make DESTDIR=/work install
|
|
`, pkg.Path(AbsUsrSrc.Append("cmake"), true,
|
|
pkg.NewHTTPGetTar(
|
|
nil, "https://github.com/Kitware/CMake/releases/download/"+
|
|
"v"+version+"/cmake-"+version+".tar.gz",
|
|
mustDecode(checksum),
|
|
pkg.TarGzip,
|
|
)))
|
|
}
|