Meta: Add cpptrace to flatpak manifest

This commit adds cpptrace to the flatpak manifest, fixing the build.

Co-authored-by: Jan Koudijs <theappgineer@gmail.com>
This commit is contained in:
R-Goc 2025-10-09 15:01:06 +02:00 committed by Jelle Raaijmakers
parent 5153b9ef45
commit 5deeb55461

View File

@ -523,6 +523,61 @@
"-DCMAKE_INSTALL_LIBDIR=lib"
]
},
{
"name": "libdwarf",
"buildsystem": "cmake-ninja",
"sources": [
{
"type": "git",
"url": "https://github.com/jeremy-rifkin/libdwarf-lite.git",
"tag": "v2.1.0"
}
],
"config-opts": [
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_PREFIX_PATH=/app",
"-DCMAKE_INSTALL_LIBDIR=lib",
"-DBUILD_SHARED=ON",
"-DBUILD_DWARFDUMP=OFF"
]
},
{
"name": "zstd",
"buildsystem": "cmake-ninja",
"subdir": "build/cmake",
"sources": [
{
"type": "git",
"url": "https://github.com/facebook/zstd.git",
"tag": "v1.5.7"
}
],
"config-opts": [
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_PREFIX_PATH=/app",
"-DCMAKE_INSTALL_LIBDIR=lib"
]
},
{
"name": "cpptrace",
"buildsystem": "cmake-ninja",
"builddir": true,
"sources": [
{
"type": "git",
"url": "https://github.com/jeremy-rifkin/cpptrace.git",
"tag": "v1.0.4"
}
],
"config-opts": [
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_PREFIX_PATH=/app",
"-DCMAKE_INSTALL_LIBDIR=lib",
"-DBUILD_SHARED_LIBS=ON",
"-DCPPTRACE_USE_EXTERNAL_LIBDWARF=ON",
"-DCPPTRACE_USE_EXTERNAL_ZSTD=ON"
]
},
{
"name": "Ladybird",
"buildsystem": "cmake-ninja",