annotate deploy/osx/deploy.sh @ 260:7057a4dcac3e

* Version -> 0.3.1 (and update OS/X deploy to handle three-part versions)
author Chris Cannam
date Wed, 12 Jan 2011 15:52:53 +0000
parents f649f6066e4d
children facd86e268b9
rev   line source
Chris@232 1 #!/bin/bash
Chris@232 2
Chris@232 3 # Execute this from the top-level directory of the project (the one
Chris@232 4 # that contains the .app bundle).
Chris@232 5
Chris@232 6 app=EasyMercurial
Chris@232 7
Chris@232 8 version=`perl -p -e 's/^[^"]*"([^"]*)".*$/$1/' version.h`
Chris@260 9 case "$version" in
Chris@260 10 [0-9].[0-9]) bundleVersion="$version".0 ;;
Chris@260 11 [0-9].[0-9].[0-9]) bundleVersion="$version" ;;
Chris@260 12 *) echo "Error: Version $version is neither two- nor three-part number" ;;
Chris@260 13 esac
Chris@232 14
Chris@232 15 echo
Chris@232 16 echo "Writing version $bundleVersion in to bundle."
Chris@232 17 echo "(This should be a three-part number: major.minor.point)"
Chris@232 18
Chris@232 19 perl -p -e "s/EASYHG_VERSION/$bundleVersion/" deploy/osx/Info.plist \
Chris@232 20 > "$app".app/Contents/Info.plist
Chris@232 21
Chris@232 22 echo "Done: check $app.app for sanity please"
Chris@232 23
Chris@232 24 echo
Chris@256 25 echo "I expect you to have already copied QtCore, QtNetwork and QtGui to "
Chris@256 26 echo "$app.app/Contents/Frameworks and PyQt4/QtCore.so and PyQt4/QtGui.so to "
Chris@256 27 echo "$app.app/Contents/MacOS -- expect errors to follow if they're missing"
Chris@256 28 echo
Chris@256 29
Chris@256 30 echo "Fixing up loader paths in binaries..."
Chris@256 31
Chris@256 32 install_name_tool -id QtCore "$app.app/Contents/Frameworks/QtCore"
Chris@256 33 install_name_tool -id QtGui "$app.app/Contents/Frameworks/QtGui"
Chris@256 34 install_name_tool -id QtNetwork "$app.app/Contents/Frameworks/QtNetwork"
Chris@256 35
Chris@256 36 install_name_tool -change QtCore.framework/Versions/4/QtCore @executable_path/../Frameworks/QtCore "$app.app/Contents/MacOS/$app"
Chris@256 37 install_name_tool -change QtGui.framework/Versions/4/QtGui @executable_path/../Frameworks/QtGui "$app.app/Contents/MacOS/$app"
Chris@256 38 install_name_tool -change QtNetwork.framework/Versions/4/QtNetwork @executable_path/../Frameworks/QtNetwork "$app.app/Contents/MacOS/$app"
Chris@256 39
Chris@256 40 install_name_tool -change QtCore.framework/Versions/4/QtCore @loader_path/QtCore "$app.app/Contents/Frameworks/QtGui"
Chris@256 41 install_name_tool -change QtCore.framework/Versions/4/QtCore @loader_path/QtCore "$app.app/Contents/Frameworks/QtNetwork"
Chris@256 42
Chris@256 43 install_name_tool -change QtCore.framework/Versions/4/QtCore @loader_path/../../Frameworks/QtCore "$app.app/Contents/MacOS/PyQt4/QtCore.so"
Chris@256 44 install_name_tool -change QtCore.framework/Versions/4/QtCore @loader_path/../../Frameworks/QtCore "$app.app/Contents/MacOS/PyQt4/QtGui.so"
Chris@256 45 install_name_tool -change QtCore.framework/Versions/4/QtCore @loader_path/../../Frameworks/QtGui "$app.app/Contents/MacOS/PyQt4/QtGui.so"
Chris@256 46
Chris@256 47 echo "Done: be sure to run the app and see that it works!"
Chris@256 48
Chris@256 49 echo
Chris@232 50 echo "Making dmg..."
Chris@232 51
Chris@232 52 hdiutil create -srcfolder "$app".app "$app"-"$version".dmg -volname "$app"-"$version"
Chris@232 53
Chris@232 54 echo "Done"