3bcf4cc196
Comprehensive fix — not a fallback. Each recipe now has explicit [package] section with name and version. Version inference: - Git-source recipes without rev/branch: '0.1.0' (Red Bear convention) - Tar/git recipes with version in URL or dir name: extracted version - Sysroot-copy recipes: matched to toolchain version Affected: 250+ recipes across all categories (core, libs, dev, system, kde, qt, drivers, gpu, drm, kernel, userspace, etc.) Every recipe in the redbear-mini build chain that was missing [package] now has explicit version metadata. Cookbook can now always determine a version at packaging time, eliminating 'cannot guess version' failures. No cookbook fallback hack — the source of truth is recipe metadata.
48 lines
952 B
TOML
48 lines
952 B
TOML
[package]
|
|
name = "cmake"
|
|
version = "4.0.3"
|
|
|
|
[source]
|
|
tar = "https://github.com/Kitware/CMake/releases/download/v4.0.3/cmake-4.0.3.tar.gz"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"bzip2",
|
|
# "cppdap",
|
|
"curl",
|
|
"expat",
|
|
# "form",
|
|
# "jsoncpp",
|
|
"libarchive",
|
|
# "liblzma",
|
|
# "librhash",
|
|
"libuv",
|
|
"nghttp2",
|
|
"openssl1",
|
|
"zlib",
|
|
"zstd",
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
|
|
COOKBOOK_CMAKE_FLAGS+=(
|
|
-DBUILD_TESTING=Off
|
|
-DCMAKE_USE_SYSTEM_BZIP2=On
|
|
-DCMAKE_USE_SYSTEM_CURL=On
|
|
-DCMAKE_USE_SYSTEM_EXPAT=On
|
|
-DCMAKE_USE_SYSTEM_LIBARCHIVE=On
|
|
-DCMAKE_USE_SYSTEM_LIBUV=On
|
|
-DCMAKE_USE_SYSTEM_NGHTTP2=On
|
|
-DCMAKE_USE_SYSTEM_ZLIB=On
|
|
-DCMAKE_USE_SYSTEM_ZSTD=On
|
|
)
|
|
cookbook_cmake
|
|
set -x
|
|
mv -vT "${COOKBOOK_STAGE}"/usr/bin "${COOKBOOK_STAGE}/bin"
|
|
mv -vT "${COOKBOOK_STAGE}"/usr/share "${COOKBOOK_STAGE}/share"
|
|
rm -rf "${COOKBOOK_STAGE}"/usr/doc
|
|
rmdir -v "${COOKBOOK_STAGE}"/usr
|
|
set +x
|
|
"""
|