Add ccache 4.9.1 to linux

This commit is contained in:
doylet 2024-05-21 21:28:46 +10:00
parent a16255964d
commit fc854d991b
1 changed files with 31 additions and 0 deletions

View File

@ -1575,4 +1575,35 @@ def get_manifest(is_windows):
],
})
# --------------------------------------------------------------------------
if not is_windows:
version = "4.9.1"
exe_path = "ccache"
download_url = f"https://github.com/ccache/ccache/releases/download/v{version}/ccache-{version}-linux-x86_64.tar.xz"
download_checksum = "d33f17ca6e02918cdc44738ce3adacb586bca65374ff1ceb0c4b2f1c87a24bef"
checksum = "481d899cd780276bbd7538e60741a1c2ae451cd5a3565cee43b7a5068489f2cf"
symlink = []
result.append({
"label": "ccache",
"manifests": [
{
"download_url": download_url,
"download_checksum": download_checksum,
"version": version,
"unzip_method": 'default',
"executables": [
{
"path": exe_path,
"symlink": symlink,
"add_to_devenv_path": True,
"checksum": checksum,
}
],
"add_to_devenv_script": [],
}
],
})
return result