]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/all/build-linux
don't fail if the cleanup fails
[wxWidgets.git] / wxPython / distrib / all / build-linux
CommitLineData
36e91097
RD
1#!/bin/bash
2# ---------------------------------------------------------------------------
3# Build the wxPython source RPMs on a Linux box. This is normally called
4# 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 RPMs
10# 3. skipclean flag (yes|no)
11# 4. the VERSION
12# 5. the remaining args are the versions of Python to build for
13#
14# ---------------------------------------------------------------------------
15
16set -o errexit
17#set -o xtrace
18
19echo "-=-=-=- Hello from $HOSTNAME -=-=-=-"
20
21if [ $# -lt 5 ]; then
22 echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION PYVER..."
23 exit 1
24fi
25
26WXDIR=$1
27DESTDIR=$2
28SKIPCLEAN=$3
29VERSION=$4
30shift;shift;shift;shift
31PYVER=$@
32
33# Since this is probably a VMWare guest, make sure that the date and
34# time are correct
35ntpdate gate.alldunn.com
36
37
38# In this case $WXDIR is where we will build at, but the source tree
39# won't be there like the other builds. The source RPMs will be in
40# $DESTDIR, and we'll put the binary RPMs back there when done.
41
42echo "Preparing $WXDIR..."
43mkdir -p $WXDIR
44cd $WXDIR
45rm -rf *
46
47for ver in $PYVER; do
48 echo "Building the RPMs for Python $ver..."
49 myrpmbuild --rebuild $DESTDIR/wxPythonGTK-py$ver-$VERSION-1.src.rpm
50 myrpmbuild --rebuild $DESTDIR/wxPythonGTK2-py$ver-$VERSION-1.src.rpm
51done
52
53
54echo "Copying RPMs to $DESTDIR..."
55cp wxPythonGTK*.i[0-9]86.rpm $DESTDIR
56cd $DESTDIR
57
58
59if [ $SKIPCLEAN != yes ]; then
60 echo "Cleaning up..."
5dda6ad8 61 rm -rf $WXDIR || true
36e91097
RD
62fi
63
64echo "-=-=-=- Goodbye! -=-=-=-"