aboutsummaryrefslogtreecommitdiff
path: root/dist/AppRun
blob: 9046d01851db262bae2d70ca1e54a3794c401018 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 $LD_LIBRARY_PATH"
#echo ">>>>> LD_PRELOAD $LD_PRELOAD"

exec ./usr/bin/yuzu "$@"