mirror of
https://github.com/RetroDECK/components-archive.git
synced 2026-08-21 22:06:38 +00:00
19 lines
747 B
Bash
19 lines
747 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
source /app/libexec/launcher_functions.sh
|
||
|
|
|
||
|
|
# Setting component name and path based on the directory name
|
||
|
|
component_name="$(basename "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")")"
|
||
|
|
component_path="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd)"
|
||
|
|
|
||
|
|
export LD_LIBRARY_PATH="$rd_shared_libs:${DEFAULT_LD_LIBRARY_PATH}"
|
||
|
|
export QT_PLUGIN_PATH="${QT_PLUGIN_PATH}"
|
||
|
|
export QT_QPA_PLATFORM_PLUGIN_PATH="${QT_QPA_PLATFORM_PLUGIN_PATH}"
|
||
|
|
export DOOMWADDIR="$component_path/share/games/doom"
|
||
|
|
|
||
|
|
log i "RetroDECK is now launching $component_name"
|
||
|
|
log d "Library path is: $LD_LIBRARY_PATH"
|
||
|
|
log d "DOOM WADs directory is: $DOOMWADDIR"
|
||
|
|
|
||
|
|
exec "$component_path/bin/gzdoom.sh" +fluid_patchset "$component_path/share/games/doom/soundfonts/gzdoom.sf2" "$@"
|