]>
Commit | Line | Data |
---|---|---|
e4bb5998 RD |
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 KIND (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 | |
f9e9ddc7 | 23 | echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION KIND PYVER" |
e4bb5998 RD |
24 | exit 1 |
25 | fi | |
26 | ||
27 | WXDIR=$1 | |
28 | DESTDIR=$2 | |
29 | SKIPCLEAN=$3 | |
30 | VERSION=$4 | |
31 | KIND=$5 | |
f9e9ddc7 | 32 | PYVER=$6 |
e4bb5998 RD |
33 | |
34 | ||
35 | #export PATH=/sw/bin:/usr/local/bin:$PATH | |
36 | export PATH=/sw/bin:/sw/sbin:/usr/local/bin:/bin:/sbin:/usr/bin:/usr/sbin:.:/usr/X11R6/bin | |
37 | echo "PATH =" $PATH | |
38 | echo "which gcc = " `which gcc` | |
39 | #exit 0 | |
40 | ||
41 | # untar the source | |
42 | echo "Unarchiving wxPython-src-$VERSION.tar.gz" | |
43 | cd $DESTDIR | |
44 | tar xzf wxPython-src-$VERSION.tar.gz | |
45 | rm wxPython-src-$VERSION.tar.gz | |
46 | ||
47 | ||
48 | echo "Invoking wxPythonOSX build script..." | |
49 | cd $WXDIR/wxPython | |
50 | export TARBALLDIR=$DESTDIR | |
51 | mkdir -p dist | |
52 | if [ $KIND = panther ]; then | |
f9e9ddc7 | 53 | distrib/mac/wxPythonOSX/build $PYVER $KIND inplace unicode |
e4bb5998 | 54 | fi |
f9e9ddc7 | 55 | distrib/mac/wxPythonOSX/build $PYVER $KIND inplace |
e4bb5998 RD |
56 | |
57 | ||
58 | echo "Copying installers to $DESTDIR..." | |
59 | cp dist/*.dmg $DESTDIR | |
60 | cd $DESTDIR | |
61 | ||
62 | ||
63 | if [ $SKIPCLEAN != yes ]; then | |
64 | echo "Cleaning up..." | |
65 | rm -r $WXDIR || true | |
66 | rm wxPython-docs-$VERSION.tar.gz | |
67 | rm wxPython-demo-$VERSION.tar.gz | |
68 | fi | |
69 | ||
70 | echo "-=-=-=- Goodbye! -=-=-=-" |