mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 15:30:35 +00:00
15 lines
358 B
Bash
15 lines
358 B
Bash
#!/bin/bash
|
|
|
|
PPSSPP="${1}"
|
|
PPSSPPQt="${PPSSPP}/Contents/MacOS/PPSSPPQt"
|
|
|
|
if [ ! -f "${PPSSPPQt}" ]; then
|
|
echo "No such file: ${PPSSPPQt}!"
|
|
exit 0
|
|
fi
|
|
|
|
plutil -replace NSPrincipalClass -string NSApplication ${PPSSPP}/Contents/Info.plist
|
|
plutil -replace NSHighResolutionCapable -bool YES ${PPSSPP}/Contents/Info.plist
|
|
|
|
# TODO: install SDL and Qt frameworks
|