1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
|
#!/bin/bash
# ---------------------------------------------------------------------------
# Build wxWidgets and wxPython on a OSX box. This is normally called
# remotely from build-all but it should be able to be used standalone
# too...
#
# The command line must have the following parameters:
#
# 1. the path to the base of the wx source tree
# 2. the path of where to put the resulting installers
# 3. skipclean flag (yes|no)
# 4. the VERSION
# 5. the version of Python to build for
# 6. the character type (ansi|unicode|both)
#
# ---------------------------------------------------------------------------
set -o errexit
set -o xtrace
echo "-=-=-=- Hello from $HOSTNAME -=-=-=-"
if [ $# -lt 6 ]; then
echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION PYVER CHARTYPE [FLAGS]"
exit 1
fi
WXDIR=$1
DESTDIR=$2
SKIPCLEAN=$3
VERSION=$4
PYVER=$5
CHARTYPE=$6
#export PATH=/sw/bin:/usr/local/bin:$PATH
export PATH=/sw/bin:/sw/sbin:/usr/local/bin:/bin:/sbin:/usr/bin:/usr/sbin:.:/usr/X11R6/bin
# untar the source
echo "Unarchiving wxPython-src-$VERSION.tar.bz2"
cd $DESTDIR
tar xjf wxPython-src-$VERSION.tar.bz2
rm wxPython-src-$VERSION.tar.bz2
cd $WXDIR/wxPython
export TARBALLDIR=$DESTDIR
mkdir -p dist
#----------------------------------------------------------------------
# Do a universal build of wxWidgets and wxPython. This is a
# simplified version of parts of the old distrib/mac/wxPythonOSX/build
# script.
OSX_VERSION=`sw_vers -productVersion`
OSX_VERSION=${OSX_VERSION:0:4}
TAG=universal
#PYTHON=`which python$PYVER`
#PYTHONW=`which pythonw$PYVER`
PYTHON=python$PYVER
PYTHONW=pythonw$PYVER
SHORTVER=${VERSION:0:3}
#PYPREFIX=`$PYTHON -c "import sys; print sys.exec_prefix"`
#PYLIB=$PYPREFIX/lib/python$PYVER
PYSYSEXE=`$PYTHON -c "import sys; print sys.executable"`
# Test if the python we are using is the System installed framework
# or one that was installed by the user. This changes where the
# site-packages (or its alias) is located in the installer tree.
#APPLE_PYTHON=no
#if [ -e /Library/Python/$PYVER ] && [ `dirname $PYTHON` == "/usr/bin" ]; then
# APPLE_PYTHON=yes
#fi
TARBALL=$TARBALLDIR/wxPython-src-$VERSION.tar.bz2
if [ ! -e $TARBALLDIR/wxPython-demo-$VERSION.tar.bz2 ]; then
echo "-------------------------------------------------------"
echo " WARNING: Demo tarball not found, will skip building "
echo " the Demo app bundle and etc."
echo " $TARBALLDIR/wxPython-demo-$VERSION.tar.bz2"
echo "-------------------------------------------------------"
fi
if [ ! -e $TARBALLDIR/wxPython-docs-$VERSION.tar.bz2 ]; then
echo "-------------------------------------------------------"
echo " WARNING: Docs tarball not found, will skip building "
echo " the the wxDocsViewer app bundle and etc."
echo " $TARBALLDIR/wxPython-docs-$VERSION.tar.bz2"
echo "-------------------------------------------------------"
fi
function do_universal_build {
CTYPE=$1
if [ $CTYPE = unicode ]; then
PYUNICODEOPT=1
else
PYUNICODEOPT=0
fi
PREFIX=/usr/local/lib/wxPython-$CTYPE-$VERSION
PREFIX_LINK=/usr/local/lib/wxPython-$CTYPE
# SITEPACKAGES=$PYLIB/site-packages
SITEPACKAGES=$PREFIX/lib/python$PYVER/site-packages
BINPREFIX=/usr/local/bin
WXROOT=$WXDIR
TMPDIR=$DESTDIR/_build_
BUILDROOT=$TMPDIR/build
INSTALLROOT=$TMPDIR/install-root
INSTALLAPPS=$TMPDIR/install-apps
DMGDIR=$TMPDIR/dmg
DMGROOT=$DMGDIR/root
DMGAPPS=$DMGDIR/apps
PROGDIR=$WXDIR/wxPython/distrib/mac
RESOURCEDIR=$PROGDIR/resources
# Setup build dirs
mkdir -p $BUILDROOT
mkdir -p $INSTALLROOT
mkdir -p $INSTALLAPPS
rm -rf $DMGDIR
mkdir -p $DMGROOT
mkdir -p $DMGAPPS/Docs
mkdir -p $DMGAPPS/Samples
pushd $BUILDROOT
#-----------------------------------------------------------------
# Build and install wxWidgets
export WXROOT
export BUILDPREFIX=$PREFIX
export INSTALLDIR=$INSTALLROOT$PREFIX
$WXDIR/distrib/scripts/mac/macbuild-lipo wxpython $CTYPE
# relink wx-config with a relative link
cd $INSTALLROOT$PREFIX/bin
rm wx-config
ln -s ../lib/wx/config/* wx-config
#-----------------------------------------------------------------
# Now wxPython. Build ppc, then i386
ARCH=ppc
export CXX="g++-3.3 -arch $ARCH -DMAC_OS_X_VERSION_MAX_ALLOWED=1040"
export CC="gcc-3.3 -arch $ARCH -DMAC_OS_X_VERSION_MAX_ALLOWED=1040"
export MACOSX_DEPLOYMENT_TARGET=10.3
# mkdir -p $INSTALLROOT/$ARCH
mkdir -p $BUILDROOT/$ARCH
echo "Building wxPython for PPC..."
cd $WXROOT/wxPython
$PYTHON setup.py \
UNICODE=$PYUNICODEOPT \
NO_SCRIPTS=1 \
EP_ADD_OPTS=1 \
WX_CONFIG="$INSTALLROOT/$PREFIX/bin/wx-config --prefix=$INSTALLROOT$PREFIX" \
BUILD_BASE=$BUILDROOT/$ARCH/wxPython \
ARCH="$ARCH" \
build
ARCH=i386
export CXX="g++-4.0 -arch $ARCH"
export CC="gcc-4.0 -arch $ARCH"
export MACOSX_DEPLOYMENT_TARGET=10.4
# mkdir -p $INSTALLROOT/$ARCH
mkdir -p $BUILDROOT/$ARCH
echo "Building wxPython for Intel..."
cd $WXROOT/wxPython
$PYTHON setup.py \
UNICODE=$PYUNICODEOPT \
NO_SCRIPTS=1 \
EP_ADD_OPTS=1 \
WX_CONFIG="$INSTALLROOT/$PREFIX/bin/wx-config --prefix=$INSTALLROOT$PREFIX" \
BUILD_BASE=$BUILDROOT/$ARCH/wxPython \
ARCH="$ARCH" \
build
#-----------------------------------------------------------------
# Install the two builds of wxPython
ARCH=ppc
export CXX="g++-3.3 -arch $ARCH -DMAC_OS_X_VERSION_MAX_ALLOWED=1030"
export CC="gcc-3.3 -arch $ARCH -DMAC_OS_X_VERSION_MAX_ALLOWED=1030"
export MACOSX_DEPLOYMENT_TARGET=10.3
cd $WXROOT/wxPython
$PYTHON setup.py \
UNICODE=$PYUNICODEOPT \
NO_SCRIPTS=1 \
EP_ADD_OPTS=1 \
WX_CONFIG="$INSTALLROOT$PREFIX/bin/wx-config --prefix=$INSTALLROOT$PREFIX" \
BUILD_BASE=$BUILDROOT/$ARCH/wxPython \
install \
--prefix=$INSTALLROOT$PREFIX/$ARCH
# --root=$INSTALLROOT/$ARCH
ARCH=i386
export CXX="g++-4.0 -arch $ARCH"
export CC="gcc-4.0 -arch $ARCH"
export MACOSX_DEPLOYMENT_TARGET=10.4
cd $WXROOT/wxPython
$PYTHON setup.py \
UNICODE=$PYUNICODEOPT \
NO_SCRIPTS=1 \
EP_ADD_OPTS=1 \
WX_CONFIG="$INSTALLROOT$PREFIX/bin/wx-config --prefix=$INSTALLROOT$PREFIX" \
BUILD_BASE=$BUILDROOT/$ARCH/wxPython \
install \
--prefix=$INSTALLROOT$PREFIX/$ARCH
# --root=$INSTALLROOT/$ARCH
# Lipo them together
echo "Lipoing $INSTALLROOT/ppc and $INSTALLROOT/i386..."
$PYTHON $WXROOT/distrib/scripts/mac/lipo-dir.py $INSTALLROOT$PREFIX/ppc $INSTALLROOT$PREFIX/i386 $INSTALLROOT$PREFIX
rm -rf $INSTALLROOT$PREFIX/ppc $INSTALLROOT$PREFIX/i386
# # Apple's Python Framework (such as what comes with Panther)
# # sym-links the site-packages dir in the framework to
# # /Library/Python/$PYVER so we need to move the files so they are
# # installed in the physical location, not the virtual one.
# if [ $APPLE_PYTHON == yes ]; then
# if [ -e $INSTALLROOT/Library/Python/$PYVER ]; then
# rm -r $INSTALLROOT/Library/Python/$PYVER
# fi
# mkdir -p $INSTALLROOT/Library/Python/$PYVER
# mv $INSTALLROOT/$SITEPACKAGES/* $INSTALLROOT/Library/Python/$PYVER
# rm -r $INSTALLROOT/System
# SITEPACKAGES=/Library/Python/$PYVER
# fi
PKGDIR=`cat $INSTALLROOT$SITEPACKAGES/wx.pth`
rm $INSTALLROOT$SITEPACKAGES/wx.pth
cd $WXROOT/wxPython
cp distrib/wxhack.py $INSTALLROOT$SITEPACKAGES/..
cat > $INSTALLROOT$SITEPACKAGES/../wxhack.pth <<EOF
site-packages
site-packages/$PKGDIR
# Move these new paths from the end of the list up to before the stock
# paths, but after any PYTHONPATH settings.
import wxhack; wxhack.fixpath('$PYVER', 2)
EOF
# install wxPython's tool scripts
mkdir -p $INSTALLROOT$BINPREFIX
cd $WXROOT/wxPython/scripts
$PYTHON CreateMacScripts.py $INSTALLROOT $BINPREFIX
# Remove the .pyc/.pyo files they just take up space and can be recreated
# during the install.
pushd $WXROOT/wxPython
$PYTHON $WXROOT/wxPython/distrib/mac/zappycfiles.py $INSTALLROOT > /dev/null
popd
# Set premissions for files in $INSTALLROOT
if [ "$UID" = "0" ]; then
chown -R root:admin $INSTALLROOT
chmod -R g+w $INSTALLROOT
fi
#-----------------------------------------------------------------
# Make the Installer package and disk image
# first some resource files
cat > $RESOURCEDIR/Welcome.txt <<EOF
Welcome!
This Installer package will install the wxPython $CTYPE runtime $VERSION for the Universal version of MacPython $PYVER. This includes:
* The wxPython extension modules and library packages
* The wxWidgets shared libraries and headers
* Some command line tool scripts, installed to /usr/local/bin.
You must install onto your current boot disk, even though the installer does not enforce this, otherwise things will not work.
You can install more than one version of the wxPython runtime if you desire. The most recently installed version will be the default wxPython, but you can choose another by setting the PYTHONPATH or by using the wxversion module. See http://wiki.wxpython.org/index.cgi/MultiVersionInstalls for more details.
Build date: `date`
EOF
# make the preflight script
cat > $RESOURCEDIR/preflight <<EOF
#!/bin/sh
# Cleanup any old install of the wxPython package
rm -rf \$2$SITEPACKAGES/wxPython
rm -rf \$2$SITEPACKAGES/wx
rm -rf \$2$SITEPACKAGES/$PKGDIR
exit 0
EOF
chmod +x $RESOURCEDIR/preflight
# make the postflight script
cat > $RESOURCEDIR/postflight <<EOF
#!/bin/sh -e
# Make a link to the newest install of wxMac/wxPython
rm -f $PREFIX_LINK
ln -s `basename $PREFIX` $PREFIX_LINK
# find a Python $PYVER binary
for dir in /usr/bin \
/usr/local/bin \
/Library/Frameworks/Python.framework/Versions/$PYVER/bin \
/System/Library/Frameworks/Python.framework/Versions/$PYVER/bin; do
if [ -e \$dir/python$PYVER ]; then
PYTHON=\$dir/python$PYVER
break
fi
done
if [ -z \$PYTHON ]; then
echo ERROR: Unable to find a Python $PYVER binary
exit 1
fi
# Byte-compile the .py files to .pyc and .pyo
\$PYTHON -m compileall \$2$SITEPACKAGES/$PKGDIR
\$PYTHON -O -m compileall \$2$SITEPACKAGES/$PKGDIR
# and all of the wxPython package should be group writable
chgrp -R admin \$2$SITEPACKAGES/$PKGDIR
chmod -R g+w \$2$SITEPACKAGES/$PKGDIR
# install a .pth file in any Python $PYVER installs we can find
for dir in /Library/Python/$PYVER/site-packages \
/Library/Frameworks/Python.framework/Versions/$PYVER/lib/python$PYVER/site-packages; do
if [ -d \$dir ]; then
echo Writing wxredirect.pth in \$dir
DEST=\`dirname $SITEPACKAGES\`
cat > \$dir/wxredirect.pth <<pthEOF
import site; site.addsitedir('\$DEST')
pthEOF
fi
done
EOF
# # On Tiger the structure of the user installable dir changed
# # slightly. Since we are installing the files as if it were
# # Panther then we need this little tweak to make it compatible.
# if [ $APPLE_PYTHON == yes ]; then
# cat >> $RESOURCEDIR/postflight <<EOF
# # Add a .pth file for Tiger so our wx.pth can be found before the default wx from Apple
# if [ -e \$2$SITEPACKAGES/site-packages ]; then
# echo "import site; site.addsitedir('$SITEPACKAGES')" > \$2$SITEPACKAGES/site-packages/00-compat-wx-path.pth
# fi
# EOF
# fi
cat >> $RESOURCEDIR/postflight <<EOF
exit 0
EOF
chmod +x $RESOURCEDIR/postflight
# Build the main Installer Package...
PKGNAME=wxPython${SHORTVER}-osx-$CTYPE-$TAG-py$PYVER
rm -rf $PKGNAME.pkg
$PYTHON $PROGDIR/buildpkg.py \
--Title=$PKGNAME \
--Version=$VERSION \
--Description="wxPython $CTYPE runtime $VERSION for the Universal version of MacPython $PYVER" \
--NeedsAuthorization="YES" \
--Relocatable="NO" \
--InstallOnly="YES" \
$INSTALLROOT \
$RESOURCEDIR
mv $PKGNAME.pkg $DMGROOT/$PKGNAME.pkg
rm $RESOURCEDIR/postflight
rm $RESOURCEDIR/preflight
rm $RESOURCEDIR/Welcome.txt
cat > "$DMGROOT/README 1st.txt" <<EOF
Welcome to wxPython!
This disk image contains the following items:
wxPython${SHORTVER}-osx-$CTYPE-$VERSION-$TAG
This Installer contains the wxPython runtime, built using the
$CTYPE build of the wxWidgets library. It includes the
Python modules and extension modules for wxPython, as well as
the wxWidgets libraries.
It is possible to have more than one version of the runtime
installed at once if you wish. The most recently installed
version will be the default wxPython, but you can choose
another by setting the PYTHONPATH or by using the wxversion
module. For more details see:
http://wiki.wxpython.org/index.cgi/MultiVersionInstalls
uninstall_wxPython.py
A simple tool to help you manage your installed versions of
wxPython. It will allow you to choose from the currently
installed wxPython packages and to select one for
uninstallation. It is a text-mode tool so you can either run
it from a Terminal command line, or you can open it with
PythonLauncher and let it create a Terminal to run it in.
NOTE: If you have versions prior to 2.5.3.1 installed, please
do run this uninstall tool to remove the older version.
EOF
cp $PROGDIR/uninstall_wxPython.py $DMGROOT
# Make a disk image to hold these files
dmgname=wxPython${SHORTVER}-osx-$CTYPE-$VERSION-$TAG-py$PYVER
$PROGDIR/makedmg $DMGROOT $DMGDIR $dmgname
echo Moving $DMGDIR/$dmgname.dmg to $DESTDIR
mv $DMGDIR/$dmgname.dmg $DESTDIR/$dmgname.dmg
#-----------------------------------------------------------------
# Now create app bundles for the demo, docs, and tools and make
# another disk image to hold it all.
cat > "$DMGAPPS/README 1st.txt" <<EOF
Welcome to wxPython!
On this disk image you will find Demo, Tools, Docs, and etc. for
wxPython $VERSION.
Everything here is optional and you can drag them out of the disk
image and drop them wherever you want. You will need to have an
installed wxPython runtime to be able to use any of them.
wxPython Demo An application bundle version of the demo.
(This has it's own copy of the demo sources
within the bundle so you can move the whole
bundle around as needed.)
XRCed An application for editing wxPython resource
files (XRC files.)
PyCrust An application that provides an interactive
Python shell and also namespace inspectors.
Editra A simple yet powerful programmer's editor.
Docs/wxDocsViewer An application that allows you to view the
wxWidgets documentation.
Docs/licence License files.
Docs/other A few readmes, change log, etc.
Samples/samples Several small sample applications that
demonstrate how to use wxPython.
Samples/demo A copy of the wxPython demo source code,
just open the folder and run demo.pyw.
Happy Hacking!
EOF
# PyAlaMode An extension of PyCrust that includes source
# file editing capabilities.
# wxDocs
if [ ! -e $TARBALLDIR/wxPython-docs-$VERSION.tar.bz2 ]; then
cat > "$DMGAPPS/Docs/Build ERROR.txt" <<EOF
The wxPython-docs tarball was not found when building this disk image!
EOF
else
pushd $BUILDROOT
tar xjvf $TARBALLDIR/wxPython-docs-$VERSION.tar.bz2
popd
# Make an app to launch viewdocs.py
$PYTHONW $PROGDIR/buildapp.py \
--builddir=$DMGAPPS/Docs \
--name=wxDocsViewer \
--mainprogram=$BUILDROOT/wxPython-$VERSION/docs/viewdocs.py \
--iconfile=$PROGDIR/Info.icns \
--python=/usr/bin/python \
--executable=$PYSYSEXE \
build
cp $BUILDROOT/wxPython-$VERSION/docs/*.zip $DMGAPPS/Docs/wxDocsViewer.app/Contents/Resources
cat > "$DMGAPPS/Docs/README 1st.txt" <<EOF
The wxDocsViewer application needs to be copied to your Desktop (or
someplace else you have write access to) before you can run it, so it
can cache some indexes within its bundle.
EOF
fi
# license files, docs, etc.
pushd $DMGAPPS/Docs
cp -pR $WXDIR/wxPython/licence .
cp -pR $WXDIR/wxPython/docs .
rm -rf docs/bin
rm -rf docs/xml-raw
mv docs other
popd
if [ ! -e $TARBALLDIR/wxPython-demo-$VERSION.tar.bz2 ]; then
cat > "$DMGAPPS/Samples/Build ERROR.txt" <<EOF
The wxPython-$VERSION-demo tarball was not found when building this disk image!
EOF
cp "$DMGAPPS/Samples/Build ERROR.txt" $DMGAPPS
else
# Copy the demo and samples to the disk image from the tarball
pushd $DMGAPPS/Samples
tar xjvf $TARBALLDIR/wxPython-demo-$VERSION.tar.bz2
mv wxPython-$VERSION/* .
rm -rf wxPython-$VERSION
rm -f demo/b demo/.setup.sh
mv demo/demo.py demo/demo.pyw
popd
# Make an app bundle to run the demo
$PYTHONW $PROGDIR/buildapp.py \
--builddir=$DMGAPPS \
--name="wxPython Demo" \
--mainprogram=$DMGAPPS/Samples/demo/demo.pyw \
--iconfile=$PROGDIR/RunDemo.icns \
--python=/usr/bin/python \
--executable=$PYSYSEXE \
build
cp -pR $DMGAPPS/Samples/demo/* "$DMGAPPS/wxPython Demo.app/Contents/Resources"
fi
# Make an app bundle to launch PyCrust
$PYTHONW $PROGDIR/buildapp.py \
--builddir=$DMGAPPS \
--name=PyCrust \
--mainprogram=$INSTALLROOT$BINPREFIX/pycrust.py \
--iconfile=$PROGDIR/PieShell.icns \
--python=/usr/bin/python \
--executable=$PYSYSEXE \
build
# Make an app to launch XRCed
$PYTHONW $PROGDIR/buildapp.py \
--builddir=$DMGAPPS \
--name=XRCed \
--mainprogram=$INSTALLROOT$BINPREFIX/xrced.py \
--iconfile=$WXDIR/wxPython/wx/tools/XRCed/XRCed.icns \
--argv \
--python=/usr/bin/python \
--executable=$PYSYSEXE \
build
# Make an app to launch Editra
$PYTHONW $PROGDIR/buildapp.py \
--builddir=$DMGAPPS \
--name=Editra \
--mainprogram=$INSTALLROOT$BINPREFIX/editra.py \
--iconfile=$WXDIR/wxPython/wx/tools/Editra/pixmaps/Editra.icns \
--resource=$WXDIR/wxPython/wx/tools/Editra/pixmaps/editra_doc.icns \
--argv \
--python=/usr/bin/python \
--executable=$PYSYSEXE \
build
PYTHONPATH=$WXDIR/wxPython/wx/tools \
$PYTHONW $PROGDIR/updateEditraPlist.py $DMGAPPS/Editra.app/Contents/Info.plist
# and then finally make a disk image containing everything
dmgname=wxPython${SHORTVER}-osx-docs-demos-$VERSION-$TAG-py$PYVER
$PROGDIR/makedmg $DMGAPPS $DMGDIR $dmgname
echo Moving $DMGDIR/$dmgname.dmg to $DESTDIR
mv $DMGDIR/$dmgname.dmg $DESTDIR/$dmgname.dmg
if [ $SKIPCLEAN != yes ]; then
rm -r $TMPDIR || true
fi
}
if [ $CHARTYPE = both ]; then
do_universal_build ansi
do_universal_build unicode
else
do_universal_build $CHARTYPE
fi
#----------------------------------------------------------------------
if [ $SKIPCLEAN != yes ]; then
echo "Cleaning up..."
cd $DESTDIR
rm -r $WXDIR || true
rm wxPython-docs-$VERSION.tar.bz2 || true
rm wxPython-demo-$VERSION.tar.bz2 || true
fi
echo "-=-=-=- Goodbye! -=-=-=-"
|