]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/all/build-linux
in unescape add normal characters in addition to unescaped characters :)
[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#
d6624155
RD
8# 1. the path of the build dir. The src RPMs will be here when we start
9# and the binary RPMs will be left here when we're done.
10# 2. skipclean flag (yes|no)
11# 3. the VERSION
12# 4. the remaining args are the versions of Python to build for
36e91097
RD
13#
14# ---------------------------------------------------------------------------
15
16set -o errexit
17#set -o xtrace
18
19echo "-=-=-=- Hello from $HOSTNAME -=-=-=-"
20
ba9a8985 21if [ $# -lt 4 ]; then
36e91097
RD
22 echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION PYVER..."
23 exit 1
24fi
25
afbe4a55 26RELEASE=$1
d6624155
RD
27SKIPCLEAN=$2
28VERSION=$3
29shift;shift;shift
36e91097
RD
30PYVER=$@
31
afbe4a55
RD
32rpmtop=_rpm_top
33
b8419d9a
RD
34if which rpmbuild > /dev/null 2>&1; then
35 RPMBUILD=rpmbuild
36else
37 RPMBUILD=rpm
38fi
39
40
afbe4a55 41function DoRPMBuild {
28d1454a
RD
42 # $1 : python version
43 # $2 : port
44 # $3 : unicode
45
b8419d9a 46 $RPMBUILD --define "_topdir $PWD/$rpmtop" \
afbe4a55 47 --define "_tmppath $PWD/$rpmtop/tmp" \
28d1454a
RD
48 --define "release ${RELEASE}_py$1" \
49 --define "pyver $1" \
50 --define "port $2" \
51 --define "unicode $3" \
52 -bb wxPython.spec
afbe4a55
RD
53
54 if [ $? != 0 ]; then
55 return $?
56 fi
28d1454a 57}
afbe4a55 58
afbe4a55 59
36e91097 60
28d1454a
RD
61echo "*** Setting up RPM build dirs"
62for dir in SPECS BUILD RPMS SOURCES SRPMS tmp; do
63 if [ ! -d $rpmtop/$dir ]; then
64 mkdir -p $rpmtop/$dir
65 fi
66done
36e91097 67
28d1454a 68cp wxPython-src-$VERSION.tar.gz $rpmtop/SOURCES
36e91097 69
28d1454a 70echo "******************** PYVER = " $PYVER
36e91097
RD
71for ver in $PYVER; do
72 echo "Building the RPMs for Python $ver..."
28d1454a
RD
73 DoRPMBuild $ver gtk 0
74 DoRPMBuild $ver gtk2 1
75 DoRPMBuild $ver gtk2 0
36e91097
RD
76done
77
78
28d1454a
RD
79echo "*** Moving RPMs to ."
80find $rpmtop -name "*.rpm"
81mv -f `find $rpmtop -name "*.rpm"` .
82
83
36e91097 84if [ $SKIPCLEAN != yes ]; then
28d1454a
RD
85 echo "*** Cleaning up $rpmtop"
86 rm -rf $rpmtop
87
36e91097 88 echo "Cleaning up..."
afbe4a55 89 rm *.spec *.tar.gz
36e91097
RD
90fi
91
92echo "-=-=-=- Goodbye! -=-=-=-"