[flatpak] Achieved successful Flatpak build

This commit is contained in:
Brenden Davidson 2025-06-21 21:01:30 -05:00
parent b0ca8e13e5
commit 3ca0bc4ad3
2 changed files with 42 additions and 0 deletions

1
.gitignore vendored
View File

@ -20,6 +20,7 @@ LEGO1PROGRESS.*
ISLEPROGRESS.*
*.pyc
tools/ghidra_scripts/import.log
.flatpak-builder/
# By convention we put the retail binaries into ./legobin.
# These entries are kept for now since that convention has not always been around.

View File

@ -0,0 +1,41 @@
{
"id": "pizza.isle.IslePortable",
"runtime": "org.kde.Platform",
"sdk": "org.kde.Sdk",
"runtime-version": "6.9",
"command": "isle",
"finish-args": [
"--share=ipc",
"--socket=wayland",
"--socket=fallback-x11",
"--socket=pulseaudio",
"--device=dri",
"--device=input"
],
"modules": [
{
"name": "isle",
"buildsystem": "cmake-ninja",
"config-opts": [
"-DCMAKE_BUILD_TYPE=RelWithDebInfo",
"-DISLE_DEBUG=OFF"
],
"sources": [
{
"type": "git",
"url": "https://github.com/isledecomp/isle-portable.git",
"branch": "master"
}
],
"build-options": {
"build-args": [
"--share=network"
]
}
}
]
}