fix: add [package].version to ca-certificates and icu recipes

Cookbook requires parseable version — ca-certificates (git source, no rev/branch)
and icu (tar URL with underscore version format) failed 'cannot guess version'
at packaging stage. Added explicit [package] sections:
- ca-certificates: version 0.1.0
- icu: version 75.1
This commit is contained in:
2026-07-12 18:39:02 +03:00
parent fd90ce9fdd
commit 2097fb48f1
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -2,6 +2,10 @@
# Two-step cross-build: host-native build for data tools, then cross-compile.
# Static-only build; cmake find_package(ICU) works with static libs via ICU_USE_STATIC.
# Required by konsole for bidirectional text rendering.
[package]
name = "icu"
version = "75.1"
[source]
tar = "https://github.com/unicode-org/icu/releases/download/release-75-1/icu4c-75_1-src.tgz"
@@ -1,3 +1,7 @@
[package]
name = "ca-certificates"
version = "0.1.0"
[source]
git = "https://gitlab.redox-os.org/redox-os/ca-certificates.git"