mirror of
https://notabug.org/litucks/torzu.git
synced 2025-04-24 09:05:13 +00:00
- fixed AppImage not accepting arguments (for example -f -g ROM_file to start directly) - adjusted AppImage build.sh so it can find Qt libs on Fedora (#98) - perl-Digest-SHA package is needed for shasum on Fedora - added option do disable linking against LLVM 17 (Steam Deck specific) - updated build-for-linux.md (Steam Deck specific)
9 lines
300 B
Bash
Executable File
9 lines
300 B
Bash
Executable File
#! /bin/sh
|
|
if [ -d /usr/lib/aarch64-linux-gnu/qt5 ]; then
|
|
exec ./bwrap --dev-bind / / --tmpfs /usr/lib/aarch64-linux-gnu/qt5 ./yuzu.sh "$@"
|
|
else
|
|
if [ -d /usr/lib/aarch64-linux-gnu/qt6 ]; then
|
|
exec ./bwrap --dev-bind / / --tmpfs /usr/lib/aarch64-linux-gnu/qt6 ./yuzu.sh "$@"
|
|
fi
|
|
fi
|