early-access version 2950
This commit is contained in:
28
dist/AppRun
vendored
Executable file
28
dist/AppRun
vendored
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/bin/sh -e
|
||||
# SPDX-FileCopyrightText: 2022 <djcj@gmx.de>
|
||||
# SPDX-License-Identifier: MIT
|
||||
# From: https://github.com/darealshinji/AppImageKit-checkrt
|
||||
|
||||
# add your command to execute here
|
||||
exec=yuzu
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
if [ "x$exec" = "x" ]; then
|
||||
exec="$(sed -n 's|^Exec=||p' *.desktop | head -1)"
|
||||
fi
|
||||
if [ -x "./usr/optional/checkrt" ]; then
|
||||
extra_libs="$(./usr/optional/checkrt)"
|
||||
fi
|
||||
if [ -n "$extra_libs" ]; then
|
||||
export LD_LIBRARY_PATH="${extra_libs}${LD_LIBRARY_PATH}"
|
||||
if [ -e "$PWD/usr/optional/exec.so" ]; then
|
||||
export LD_PRELOAD="$PWD/usr/optional/exec.so:${LD_PRELOAD}"
|
||||
fi
|
||||
fi
|
||||
|
||||
export SSL_CERT_FILE="$PWD/ca-certificates.pem"
|
||||
#echo ">>>>> $LD_LIBRARY_PATH"
|
||||
#echo ">>>>> $LD_PRELOAD"
|
||||
|
||||
./usr/bin/$exec "$*"
|
||||
exit $?
|
Reference in New Issue
Block a user