source: git/buildmacosx.sh @ d752afd

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since d752afd was d752afd, checked in by Olly Betts <olly@…>, 10 years ago

buildmacosx.sh: Update to use wx 3.0.0, and add a checksum check for
the downloaded wx sources. Thanks to David A. Riggs for his work on
getting the Mac OS X build going with wx 3.0.0.

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