annotate deploy/osx/deploy.sh @ 742:5462ac97d28f

OS/X build/deploy fixes
author Chris Cannam
date Fri, 04 Jul 2014 11:03:33 +0100
parents 6b8e6600fa02
children d18c89386a71
rev   line source
Chris@409 1 #!/bin/bash
Chris@409 2
Chris@409 3 # Execute this from the top-level directory of the project (the one
Chris@409 4 # that contains the .app bundle). Supply the name of the .app bundle
Chris@409 5 # as argument (the target will use $app.app regardless, but we need
Chris@409 6 # to know the source)
Chris@409 7
Chris@409 8 source="$1"
Chris@409 9 dmg="$2"
Chris@409 10 if [ -z "$source" ] || [ ! -d "$source" ] || [ -z "$dmg" ]; then
Chris@409 11 echo "Usage: $0 <source.app> <target-dmg-basename>"
Chris@463 12 echo " e.g. $0 MyApplication.app MyApplication"
Chris@463 13 echo " Version number and .dmg will be appended automatically,"
Chris@463 14 echo " but the .app name must include .app"
Chris@409 15 exit 2
Chris@409 16 fi
Chris@409 17 app=`basename "$source" .app`
Chris@409 18
Chris@409 19 version=`perl -p -e 's/^[^"]*"([^"]*)".*$/$1/' version.h`
Chris@409 20 case "$version" in
Chris@409 21 [0-9].[0-9]) bundleVersion="$version".0 ;;
Chris@409 22 [0-9].[0-9].[0-9]) bundleVersion="$version" ;;
Chris@409 23 *) echo "Error: Version $version is neither two- nor three-part number" ;;
Chris@409 24 esac
Chris@409 25
Chris@409 26 echo
Chris@514 27 echo "Fixing up paths."
Chris@514 28
Chris@514 29 deploy/osx/paths.sh "$app"
Chris@514 30
Chris@514 31 echo
Chris@409 32 echo "Making target tree."
Chris@409 33
Chris@409 34 volume="$app"-"$version"
Chris@409 35 target="$volume"/"$app".app
Chris@409 36 dmg="$dmg"-"$version".dmg
Chris@409 37
Chris@409 38 mkdir "$volume" || exit 1
Chris@409 39
Chris@409 40 ln -s /Applications "$volume"/Applications
Chris@412 41 cp README README.OSC COPYING CHANGELOG "$volume/"
Chris@409 42 cp -rp "$source" "$target"
Chris@409 43
Chris@409 44 echo "Done"
Chris@409 45
Chris@742 46 echo
Chris@742 47 echo "Copying in qt.conf to set local-only plugin paths."
Chris@742 48 echo "Make sure all necessary Qt plugins are in $target/Contents/plugins/*"
Chris@742 49 echo "You probably want platforms/, accessible/ and imageformats/ subdirectories."
Chris@742 50 cp deploy/osx/qt.conf "$target"/Contents/Resources/qt.conf
Chris@742 51
Chris@742 52 echo
Chris@409 53 echo "Writing version $bundleVersion in to bundle."
Chris@409 54 echo "(This should be a three-part number: major.minor.point)"
Chris@409 55
Chris@409 56 perl -p -e "s/SV_VERSION/$bundleVersion/" deploy/osx/Info.plist \
Chris@409 57 > "$target"/Contents/Info.plist
Chris@409 58
Chris@409 59 echo "Done: check $target/Contents/Info.plist for sanity please"
Chris@409 60
Chris@510 61 deploy/osx/sign.sh "$volume" || exit 1
Chris@510 62
Chris@409 63 echo
Chris@409 64 echo "Making dmg..."
Chris@409 65
Chris@409 66 hdiutil create -srcfolder "$volume" "$dmg" -volname "$volume" &&
Chris@409 67 rm -r "$volume"
Chris@409 68
Chris@409 69 echo "Done"