42 lines
825 B
TOML
42 lines
825 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = [
|
|
"--system-libs",
|
|
"--mandir=/share/man",
|
|
"--docdir=/share/doc/cmake",
|
|
]
|
|
configure_file = "bootstrap"
|
|
skip_tests = true
|
|
|
|
[dependencies]
|
|
build = [ "nlohmann-json" ]
|
|
runtime = [
|
|
"glibc",
|
|
"curl",
|
|
"libarchive",
|
|
"expat",
|
|
"libuv",
|
|
"zlib-ng",
|
|
"ncurses",
|
|
"cppdap",
|
|
"jsoncpp",
|
|
"rhash",
|
|
"libunwind",
|
|
"libcxx"
|
|
]
|
|
|
|
[package]
|
|
description = "modern toolset used for generating Makefiles"
|
|
homepage = "https://cmake.org"
|
|
license = "custom"
|
|
name = "cmake"
|
|
version = "4.2.3"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
post_extract = ["""sed -i '/"lib64"/s/64//' Modules/GNUInstallDirs.cmake"""]
|
|
sha256 = "7efaccde8c5a6b2968bad6ce0fe60e19b6e10701a12fce948c2bf79bac8a11e9"
|
|
url = "https://cmake.org/files/v4.2/cmake-$version.tar.gz"
|