mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-20 13:59:57 +00:00
The .app happens to be a tweaked version of the one provided when grabbing a copy of the game from Steam, as I am unfamiliar with the process of collecting frameworks into an app bundle, at least with cmake/qmake. All you need to do is replace the .app in ~/Library/Application Support/Steam/SteamApps/OneShot/ to play on Mac!
6 lines
245 B
Bash
Executable file
6 lines
245 B
Bash
Executable file
#!/bin/bash
|
|
[[ $# -eq 1 && "$1" == -psn_* ]] && shift
|
|
cd "${0%/*}/../Resources"
|
|
DATA="$(cd "../../.." && echo "$PWD")"
|
|
export DYLD_FALLBACK_LIBRARY_PATH="$PWD/../Frameworks:$DYLD_FALLBACK_LIBRARY_PATH"
|
|
exec ./steamshim --gameFolder="$DATA" "$@"
|