]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/b
3 if [ "$1" = "15" ]; then
6 elif [ "$1" = "20" ]; then
12 SETUP
="python$PYVER -u setup.py"
13 FLAGS
="USE_SWIG=1 IN_CVS_TREE=1"
19 if [ "$1" = "c" ]; then
21 CMD
="$SETUP $FLAGS $OTHERFLAGS clean"
22 OTHERCMD
="rm -f wxPython/*.so"
25 elif [ "$1" = "i" ]; then
27 CMD
="$SETUP build $OTHERFLAGS install"
30 elif [ "$1" = "s" ]; then
32 CMD
="$SETUP $OTHERFLAGS sdist"
35 elif [ "$1" = "r" ]; then
37 CMD
="$SETUP $OTHERFLAGS bdist_rpm"
39 # (no command arg) --> normal build for development
41 CMD
="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace $*"
49 if [ "$OTHERCMD" != "" ]; then