Files @ f28757bb21cb
Branch filter:

Location: ATITD-Tools/Desert-Paint-Lab/mac/build_mac_bundle.sh

jmaltzen
Refactor recipe / reaction computation into a common class. Add some file utilities for supporting Mac bundles. Add some scripts for building Mac app bundles. Add a help window that shows the missing reactions.
#!/bin/sh

/bin/mv DesertPaintLab.app DesertPaintLab.app.`/bin/date +"%Y%m%d%H%M%S"`
/bin/mkdir -p DesertPaintLab.app
/bin/cp Info.plist DesertPaintLab.app/Info.plist
/bin/mkdir -p DesertPaintLab.app/Contents/MacOS
/bin/cp launcher.sh DesertPaintLab.app/Contents/MacOS
/bin/chmod 755 DesertPaintLab.app/Contents/MacOS/launcher.sh
/bin/cp ../bin/Release/DesertPaintLab.exe DesertPaintLab.app/Contents/MacOS/
/bin/mkdir -p DesertPaintLab.app/Contents/Resources
/bin/cp ../bin/Release/colors.txt DesertPaintLab.app/Contents/Resources/
/bin/cp -r ../bin/Release/template DesertPaintLab.app/Contents/Resources/template