mirror of
https://github.com/RetroDECK/components-archive.git
synced 2026-08-21 14:06:38 +00:00
18 lines
937 B
Bash
18 lines
937 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# 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)"
|
||
|
|
|
||
|
|
# Set LD_LIBRARY_PATH
|
||
|
|
export LD_LIBRARY_PATH="$component_path/lib:$ffmpeg_path/25.08:$rd_shared_libs:$rd_shared_libs/org.kde.Platform/6.10/:$rd_shared_libs/org.gnome.Platform/49/:$rd_shared_libs/org.freedesktop.Platform/25.08/:${DEFAULT_LD_LIBRARY_PATH}"
|
||
|
|
export QT_PLUGIN_PATH="$rd_shared_libs/org.kde.Platform/6.10/plugins/:${QT_PLUGIN_PATH}"
|
||
|
|
export QT_QPA_PLATFORM_PLUGIN_PATH="$rd_shared_libs/org.kde.Platform/6.10/plugins/platforms/:${QT_QPA_PLATFORM_PLUGIN_PATH}"
|
||
|
|
|
||
|
|
log i "RetroDECK is now launching $component_name"
|
||
|
|
log d "Library path is: $LD_LIBRARY_PATH"
|
||
|
|
log d "QT plugin path is: $QT_PLUGIN_PATH"
|
||
|
|
log d "QT QPA PLATFORM plugin path is: $QT_QPA_PLATFORM_PLUGIN_PATH"
|
||
|
|
|
||
|
|
exec "$component_path/bin/eka2l1_qt" "$@"
|