| [6df03c1] | 1 | #!/bin/sh
|
|---|
| 2 | #
|
|---|
| [0580c6a] | 3 | # Note: this script requires MacOS X 10.2 or greater, and builds diskimages
|
|---|
| 4 | # which require MacOS X 10.1 or greater to install.
|
|---|
| 5 | #
|
|---|
| [4a7c15ab] | 6 | # Currently (at least if built on 10.6) 10.6 is required to run.
|
|---|
| [2032841] | 7 | #
|
|---|
| [cc83ec9] | 8 | # You probably need to have Xcode installed - you can download this for free
|
|---|
| 9 | # from Apple: http://developer.apple.com/xcode/
|
|---|
| 10 | #
|
|---|
| [b72f4b5] | 11 | # Run from the unpacked survex-1.1.X directory like so:
|
|---|
| [6df03c1] | 12 | #
|
|---|
| [2032841] | 13 | # ./buildmacosx.sh
|
|---|
| [0580c6a] | 14 | #
|
|---|
| [1324d6c] | 15 | # This will automatically download and temporarily install wxWidgets
|
|---|
| [0580c6a] | 16 | # (this script is smart enough not to download or build it if it already
|
|---|
| 17 | # has).
|
|---|
| 18 | #
|
|---|
| [1324d6c] | 19 | # If you already have wxWidgets installed permanently, use:
|
|---|
| [0580c6a] | 20 | #
|
|---|
| [2032841] | 21 | # ./buildmacosx.sh --no-install-wx
|
|---|
| [6df03c1] | 22 | #
|
|---|
| [1324d6c] | 23 | # If wxWidgets is installed somewhere such that wx-config isn't on your
|
|---|
| [6df03c1] | 24 | # PATH you need to indicate where wx-config is by running this script
|
|---|
| 25 | # something like this:
|
|---|
| 26 | #
|
|---|
| [b7510ee] | 27 | # env WX_CONFIG=/path/to/wx-config ./buildmacosx.sh
|
|---|
| [b72f4b5] | 28 | #
|
|---|
| [2032841] | 29 | # (If you set WX_CONFIG, there's no need to pass --no-install-wx).
|
|---|
| 30 | #
|
|---|
| [1324d6c] | 31 | # If using a pre-installed wxWidgets, note that it must satisfy the
|
|---|
| [b72f4b5] | 32 | # following requirements:
|
|---|
| 33 | # - It must be built with OpenGL support (--with-opengl).
|
|---|
| 34 | # - It must be the Carbon version.
|
|---|
| [b7510ee] | 35 | # - It probably should be a "Unicode" build (--enable-unicode).
|
|---|
| [6df03c1] | 36 |
|
|---|
| 37 | set -e
|
|---|
| [0580c6a] | 38 |
|
|---|
| [f04ae51] | 39 | # 2.8.12 doesn't work:
|
|---|
| 40 | # /bin/sh: line 0: cd: ../build/bakefiles/wxpresets/presets: No such file or directory
|
|---|
| 41 | # cp: wx.bkl: No such file or directory
|
|---|
| 42 | # [...]
|
|---|
| 43 | WXVERSION=2.8.11
|
|---|
| [b72f4b5] | 44 |
|
|---|
| [cc83ec9] | 45 | # Sadly, you can only specify one arch via -arch at a time (a restriction of
|
|---|
| 46 | # the wxWidgets build system).
|
|---|
| 47 | #
|
|---|
| 48 | # Using -arch i386 produces a build which will also work on 64-bit Intel Macs.
|
|---|
| 49 | # If you want a build which *only* works on 64 bit Intel Macs, then use
|
|---|
| 50 | # arch_flags='-arch x86_64' instead.
|
|---|
| 51 | #
|
|---|
| 52 | # To build for older machines with a ppc CPU, you want arch_flags='-arch ppc'
|
|---|
| 53 | # instead.
|
|---|
| 54 | arch_flags='-arch i386'
|
|---|
| [2032841] | 55 | if [ -z "${WX_CONFIG+set}" ] && [ "x$1" != "x--no-install-wx" ] ; then
|
|---|
| [0580c6a] | 56 | if test -x WXINSTALL/bin/wx-config ; then
|
|---|
| 57 | :
|
|---|
| 58 | else
|
|---|
| [deb58b87] | 59 | prefix=`pwd`/WXINSTALL
|
|---|
| [90a2e0f] | 60 | wxtarball=wxWidgets-$WXVERSION.tar.bz2
|
|---|
| [56980d4e] | 61 | test -f "$wxtarball" || \
|
|---|
| 62 | curl -O "ftp://ftp.wxwidgets.org/pub/$WXVERSION/$wxtarball"
|
|---|
| 63 | echo "+++ Extracting $wxtarball"
|
|---|
| 64 | test -d "wxWidgets-$WXVERSION" || tar jxf "$wxtarball"
|
|---|
| 65 | test -d "wxWidgets-$WXVERSION/build" || "mkdir wxWidgets-$WXVERSION/build"
|
|---|
| 66 | cd "wxWidgets-$WXVERSION/build"
|
|---|
| [f04ae51] | 67 | ../configure --disable-shared --prefix="$prefix" --with-opengl --enable-unicode CC="gcc $arch_flags" CXX="g++ $arch_flags"
|
|---|
| [0580c6a] | 68 | make -s
|
|---|
| 69 | make -s install
|
|---|
| 70 | cd ../..
|
|---|
| 71 | fi
|
|---|
| [b7510ee] | 72 | WX_CONFIG=`pwd`/WXINSTALL/bin/wx-config
|
|---|
| [0580c6a] | 73 | fi
|
|---|
| 74 |
|
|---|
| [b7510ee] | 75 | test -n "$WX_CONFIG" || WX_CONFIG=`which wx-config`
|
|---|
| 76 | if test -z "$WX_CONFIG" ; then
|
|---|
| 77 | echo "WX_CONFIG not set and wx-config not on your PATH"
|
|---|
| [6df03c1] | 78 | exit 1
|
|---|
| 79 | fi
|
|---|
| [1324d6c] | 80 | # Force static linking so the user doesn't need to install wxWidgets.
|
|---|
| [b7510ee] | 81 | WX_CONFIG=$WX_CONFIG' --static'
|
|---|
| [0580c6a] | 82 | rm -rf *.dmg Survex macosxtmp
|
|---|
| [deb58b87] | 83 | D=`pwd`/Survex
|
|---|
| 84 | T=`pwd`/macosxtmp
|
|---|
| [2032841] | 85 | ./configure --prefix="$D" --bindir="$D" --mandir="$T" WX_CONFIG="$WX_CONFIG" CC="gcc $arch_flags" CXX="g++ $arch_flags"
|
|---|
| [6df03c1] | 86 | make
|
|---|
| 87 | make install
|
|---|
| 88 | #mv Survex/survex Survex/Survex
|
|---|
| 89 |
|
|---|
| [b72f4b5] | 90 | # Construct the Aven application bundle.
|
|---|
| [2032841] | 91 | mkdir Survex/Aven.app
|
|---|
| 92 | mkdir Survex/Aven.app/Contents
|
|---|
| 93 | mkdir Survex/Aven.app/Contents/MacOS
|
|---|
| 94 | mkdir Survex/Aven.app/Contents/Resources
|
|---|
| 95 | cp lib/Info.plist Survex/Aven.app/Contents
|
|---|
| 96 | printf APPLAVEN > Survex/Aven.app/Contents/PkgInfo
|
|---|
| [56980d4e] | 97 | cp -r "$D"/share/survex/* Survex/Aven.app/Contents/Resources/
|
|---|
| [2032841] | 98 | # FIXME: Generate Survex/Aven.app/Resources/Aven.icns
|
|---|
| [b72f4b5] | 99 | mv Survex/aven Survex/Aven.app/Contents/MacOS/
|
|---|
| 100 | rm -f Survex/share/survex/aven.txf
|
|---|
| 101 | rm -rf Survex/share/survex/icons
|
|---|
| 102 |
|
|---|
| [6df03c1] | 103 | size=`du -s Survex|sed 's/[^0-9].*//'`
|
|---|
| 104 | # Allow 1000 extra sectors for various overheads (500 wasn't enough).
|
|---|
| [56980d4e] | 105 | sectors=`expr 1000 + "$size"`
|
|---|
| [6df03c1] | 106 | # Partition needs to be at least 4M and sectors are 512 bytes.
|
|---|
| [56980d4e] | 107 | if test "$sectors" -lt 8192 ; then
|
|---|
| [6df03c1] | 108 | sectors=8192
|
|---|
| 109 | fi
|
|---|
| 110 | echo "Creating new blank image survex-macosx.dmg of $sectors sectors"
|
|---|
| [0580c6a] | 111 | # This creates the diskimage file and initialises it as an HFS+ volume.
|
|---|
| [56980d4e] | 112 | hdiutil create -sectors "$sectors" survex-macosx -layout NONE -fs HFS+ -volname Survex
|
|---|
| [6df03c1] | 113 |
|
|---|
| [b72f4b5] | 114 | echo "Presenting image to the filesystems for mounting."
|
|---|
| [6df03c1] | 115 | # This will mount the image onto the Desktop.
|
|---|
| [ab66f3c] | 116 | # Get the name of the device it is mounted on and the mount point.
|
|---|
| 117 |
|
|---|
| 118 | # man hdiutil says:
|
|---|
| 119 | # "The output of [hdiutil] attach has been stable since OS X 10.0 (though it
|
|---|
| 120 | # was called hdid(8) then) and is intended to be program-readable. It consists
|
|---|
| 121 | # of the /dev node, a tab, a content hint (if applicable), another tab, and a
|
|---|
| 122 | # mount point (if any filesystems were mounted)."
|
|---|
| [f04ae51] | 123 | #
|
|---|
| 124 | # In reality, it seems there are also some spaces before each tab character.
|
|---|
| [ab66f3c] | 125 | hdid_output=`hdid survex-macosx.dmg|tail -1`
|
|---|
| 126 | echo "Last line of hdid output was: $hdid_output"
|
|---|
| [f04ae51] | 127 | dev=`echo "$hdid_output"|sed 's!/dev/\([^ ]*\).*!\1!'`
|
|---|
| 128 | mount_point=`echo "$hdid_output"|sed 's!.*[ ]!!'`
|
|---|
| [ab66f3c] | 129 |
|
|---|
| 130 | echo "Device $dev mounted on $mount_point, copying files into image."
|
|---|
| 131 | ditto -rsrcFork Survex "$mount_point/Survex"
|
|---|
| 132 | ditto lib/INSTALL.OSX "$mount_point/INSTALL"
|
|---|
| 133 |
|
|---|
| [0580c6a] | 134 | echo "Detaching image."
|
|---|
| [56980d4e] | 135 | hdiutil detach "$dev"
|
|---|
| [6df03c1] | 136 |
|
|---|
| [deb58b87] | 137 | version=`sed 's/.*AM_INIT_AUTOMAKE([^,]*, *\([0-9.]*\).*/\1/p;d' configure.in`
|
|---|
| [56980d4e] | 138 | file=survex-macosx-$version.dmg
|
|---|
| [6df03c1] | 139 | echo "Compressing image file survex-macosx.dmg to $file"
|
|---|
| [0580c6a] | 140 | # This needs MacOS X 10.1 or above for unpacking - change UDZO to UDCO to allow
|
|---|
| 141 | # the dmg to be unpacked on 10.0 as well:
|
|---|
| 142 | hdiutil convert survex-macosx.dmg -format UDZO -o "$file"
|
|---|
| 143 | rm survex-macosx.dmg
|
|---|
| [6df03c1] | 144 |
|
|---|
| 145 | echo "$file created successfully."
|
|---|