feat: Added Torzu's AppImageBuilder

Added support for building AppImages using Torzu's AppImageBuilder.

Signed-off-by: Boss.sfc <boss.sfc@citron-emu.org>
This commit is contained in:
Boss.sfc
2025-07-31 14:40:22 +07:00
parent c5dce33345
commit 317a8b2bd5
14 changed files with 426 additions and 0 deletions

11
AppImageBuilder/assets/AppRun Executable file
View File

@@ -0,0 +1,11 @@
#! /bin/bash
cd "$APPDIR"
if [ -d /usr/lib/$(uname -m)-linux-gnu/qt5 ] || [ -d /usr/lib/qt ]; then
# System-wide Qt5
exec ./citron.sh "$@"
else
# Bundled Qt5
exec ./citron-bqt.sh "$@"
fi