source: git/buildmacosx.sh @ 9aa30e7

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

buildmacosx.sh: Update comment to note that wx3 is Unicode only.

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