- #-----------------------------------------------
- # The common files package
-
- # Make the welcome message
- cat > $RESOURCEDIR/Welcome.txt <<EOF
-Welcome!
-
-This package contains the common files that are shared between versions of the wxPython runtime. This includes some command line scripts installed to /usr/local/bin as well as a Python .pth file for site-packages that will determine which version of the installed runtimes is the default version.
-
-EOF
-
- # Build the common Installer Package...
- rm -rf wxPython-common-osx-$KIND.pkg
- python $PROGDIR/../buildpkg.py \
- --Title=wxPython-common-osx-$KIND \
- --Version=$VERSION \
- --Description="Common files for the wxPython runtime ($CHARTYPE-$VERSION)" \
- --NeedsAuthorization="YES" \
- --Relocatable="NO" \
- --InstallOnly="YES" \
- $INSTALLCOMMON \
- $RESOURCEDIR
-
- mv wxPython-common-osx-$KIND.pkg $DMGROOT
-
- rm $RESOURCEDIR/Welcome.txt
-
-
-