This commit is contained in:
Anirudh Sevugan 2026-03-20 05:36:23 +00:00 committed by GitHub
commit 5d192cce5c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,9 +1,8 @@
{
"id": "io.github.hedge_dev.unleashedrecomp",
"runtime": "org.freedesktop.Platform",
"runtime-version": "24.08",
"runtime-version": "25.08",
"sdk": "org.freedesktop.Sdk",
"sdk-extensions" : [ "org.freedesktop.Sdk.Extension.llvm18" ],
"finish-args": [
"--share=network",
"--socket=wayland",
@ -16,6 +15,32 @@
"--filesystem=/mnt"
],
"modules": [
{
"name": "llvm",
"buildsystem": "simple",
"build-commands": [
"mkdir -p /usr/lib/sdk/llvm18 llvm/extracted",
"tar -xJf llvm/*.tar.xz -C llvm/extracted",
"tar -xf llvm/extracted/*.tar --strip-components=1 -C /usr/lib/sdk/llvm18/"
],
"sources": [
{
"type": "file",
"url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.8/clang+llvm-18.1.8-x86_64-linux-gnu-ubuntu-18.04.tar.xz",
"sha256": "54ec30358afcc9fb8aa74307db3046f5187f9fb89fb37064cdde906e062ebf36",
"dest": "llvm",
"only-arches": ["x86_64"]
},
{
"type": "file",
"url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.8/clang+llvm-18.1.8-aarch64-linux-gnu.tar.xz",
"sha256": "dcaa1bebbfbb86953fdfbdc7f938800229f75ad26c5c9375ef242edad737d999",
"dest": "llvm",
"only-arches": ["aarch64"]
}
],
"cleanup": [ "*" ]
},
{
"name": "UnleashedRecomp",
"buildsystem": "simple",