38 lines
1022 B
Bash
Executable File
38 lines
1022 B
Bash
Executable File
#!/bin/bash
|
|
# OpenRA packaging script for Mac OSX
|
|
|
|
LAUNCHER_TAG="osx-launcher-20160824"
|
|
|
|
if [ $# -ne "3" ]; then
|
|
echo "Usage: `basename $0` tag files-dir outputdir"
|
|
exit 1
|
|
fi
|
|
|
|
# Dirty build dir; last build failed?
|
|
if [ -e "OpenRA.app" ]; then
|
|
echo "Error: OpenRA.app already exists"
|
|
exit 2
|
|
fi
|
|
|
|
curl -s -L -O https://github.com/OpenRA/OpenRALauncherOSX/releases/download/${LAUNCHER_TAG}/launcher.zip || exit 3
|
|
unzip -qq launcher.zip
|
|
rm launcher.zip
|
|
|
|
# Copy the template to build the game package
|
|
cp -r $2/* "OpenRA.app/Contents/Resources/" || exit 3
|
|
|
|
# Remove unused icon
|
|
rm OpenRA.app/Contents/Resources/OpenRA.ico
|
|
|
|
# Remove WinForms applications
|
|
rm OpenRA.app/Contents/Resources/OpenRA.exe
|
|
|
|
# Set version string
|
|
sed "s/{DEV_VERSION}/${1}/" OpenRA.app/Contents/Info.plist > OpenRA.app/Contents/Info.plist.tmp
|
|
mv OpenRA.app/Contents/Info.plist.tmp OpenRA.app/Contents/Info.plist
|
|
|
|
# Package app bundle into a zip and clean up
|
|
zip OpenRA-$1 -r -9 OpenRA.app --quiet --symlinks
|
|
mv OpenRA-$1.zip $3
|
|
rm -rf OpenRA.app
|