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.
42 lines
952 B
TOML
42 lines
952 B
TOML
[package]
|
|
name = "devilutionx"
|
|
version = "1.5.4"
|
|
|
|
[source]
|
|
tar = "https://github.com/diasurgical/devilutionX/archive/refs/tags/1.5.4.tar.gz"
|
|
blake3 = "d4a61ff3a7c69d86a29158918aad48ab9c4866c6a22a3e8da5feadbb7d23b3ca"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"bzip2",
|
|
"libiconv",
|
|
"liborbital",
|
|
"sdl1",
|
|
"zlib",
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
|
|
COOKBOOK_CONFIGURE="cmake"
|
|
COOKBOOK_CONFIGURE_FLAGS=(
|
|
-DBUILD_TESTING=OFF
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
-DCMAKE_CROSSCOMPILING=ON
|
|
-DCMAKE_CXX_COMPILER="${TARGET}-g++"
|
|
-DCMAKE_C_COMPILER="${TARGET}-gcc"
|
|
-DCMAKE_INSTALL_PREFIX="/"
|
|
-DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}"
|
|
-DCMAKE_VERBOSE_MAKEFILE=ON
|
|
-DDEVILUTIONX_SYSTEM_BZIP2=ON
|
|
-DDEVILUTIONX_SYSTEM_ZLIB=ON
|
|
-DNONET=ON
|
|
-DSDL_LIBRARY="-lSDL -lorbital"
|
|
-DUSE_SDL1=ON
|
|
"${COOKBOOK_SOURCE}"
|
|
)
|
|
cookbook_configure
|
|
mkdir -v "${COOKBOOK_STAGE}/bin"
|
|
cp -v devilutionx "${COOKBOOK_STAGE}/bin"
|
|
"""
|