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!
24 lines
726 B
Text
Executable file
24 lines
726 B
Text
Executable file
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleExecutable</key>
|
|
<string>oneshot.sh</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>icon.icns</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>OneShot</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1.0</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0</string>
|
|
<key>LSApplicationCategoryType</key>
|
|
<string>public.app-category.games</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>10.7</string>
|
|
</dict>
|
|
</plist>
|