Files
RedBear-OS/recipes/libs/libarchive/recipe.toml
T
vasilito 1c94358a9b libarchive: fix dead source URL (libarchive.org -> GitHub releases)
The recipe's tar URL (https://libarchive.org/downloads/libarchive-3.8.8/...)
404s — that pathed form does not exist. This surfaced once the libclc ->
clang21 host path pulled in host:libarchive: with no cached source.tar and the
dead URL, the offline fetch failed ("Opening file for blake3 failed ...
source.tar: No such file"). Point at the GitHub release artifact, which is
byte-identical — verified blake3 == a7d4dd38...888b9024, unchanged.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-26 00:04:11 +09:00

17 lines
524 B
TOML

[package]
name = "libarchive"
version = "3.8.8"
[source]
# libarchive.org's /downloads/libarchive-3.8.8/... path 404s (the project's
# release tarballs are served flat and are also mirrored on GitHub releases).
# Use the GitHub release artifact, which is byte-identical (same blake3).
tar = "https://github.com/libarchive/libarchive/releases/download/v3.8.8/libarchive-3.8.8.tar.xz"
blake3 = "a7d4dd38d2ace0487c391573834243b7dea241eb7c4ac5ba1083597d888b9024"
patches = [
"redox.patch"
]
[build]
template = "configure"