]>
Commit | Line | Data |
---|---|---|
1 | #!/bin/bash | |
2 | # --------------------------------------------------------------------------- | |
3 | # Build wxWidgets and wxPython on a OSX box. This is normally | |
4 | # called from build-all but it should be able to be used standalone too... | |
5 | # | |
6 | # The command line must have the following parameters: | |
7 | # | |
8 | # 1. the path to the base of the wx source tree | |
9 | # 2. the path of where to put the resulting installers | |
10 | # 3. skipclean flag (yes|no) | |
11 | # 4. the VERSION | |
12 | # 5. the FLAVOR (panther or jaguar) | |
13 | # *. the remaining args are the versions of Python to build for | |
14 | # | |
15 | # --------------------------------------------------------------------------- | |
16 | ||
17 | set -o errexit | |
18 | #set -o xtrace | |
19 | ||
20 | echo "-=-=-=- Hello from $HOSTNAME -=-=-=-" | |
21 | ||
22 | if [ $# -lt 6 ]; then | |
23 | echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION FLAVOR PYVER..." | |
24 | exit 1 | |
25 | fi | |
26 | ||
27 | WXDIR=$1 | |
28 | DESTDIR=$2 | |
29 | SKIPCLEAN=$3 | |
30 | VERSION=$4 | |
31 | FLAVOR=$5 | |
32 | shift;shift;shift;shift;shift | |
33 | PYVER=$@ | |
34 | ||
35 | ||
36 | export PATH=/sw/bin:$PATH | |
37 | ||
38 | ||
39 | # untar the source | |
40 | echo "Unarchiving wxPythonSrc-$VERSION.tar.gz" | |
41 | cd $DESTDIR | |
42 | tar xzf wxPythonSrc-$VERSION.tar.gz | |
43 | rm wxPythonSrc-$VERSION.tar.gz | |
44 | ||
45 | ||
46 | echo "Invoking wxPythonOSX build script..." | |
47 | cd $WXDIR/wxPython | |
48 | export TARBALLDIR=$DESTDIR | |
49 | mkdir -p dist | |
50 | distrib/mac/wxPythonOSX/build $FLAVOR inplace skipclean | |
51 | ||
52 | ||
53 | echo "Copying installers to $DESTDIR..." | |
54 | cp dist/*.dmg $DESTDIR | |
55 | cd $DESTDIR | |
56 | ||
57 | ||
58 | if [ $SKIPCLEAN != yes ]; then | |
59 | echo "Cleaning up..." | |
60 | rm -r $WXDIR || true | |
61 | rm wxPythonDocs-$VERSION.tar.gz | |
62 | rm wxPythonDemo-$VERSION.tar.gz | |
63 | fi | |
64 | ||
65 | echo "-=-=-=- Goodbye! -=-=-=-" |