]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/make_installer.py
Correct malloc()/delete[] mismatch.
[wxWidgets.git] / wxPython / distrib / make_installer.py
CommitLineData
8b9a4190
RD
1# -*- coding: iso-8859-1 -*-
2#----------------------------------------------------------------------
3# Name: make_installer.py
4# Purpose: A script to create the wxPython windows installer
5#
6# Author: Robin Dunn
7#
8# Created: 30-April-2001
9# RCS-ID: $Id$
10# Copyright: (c) 2003 by Total Control Software
11# Licence: wxWindows license
12#----------------------------------------------------------------------
13
d7ec6564 14"""
d7ec6564
RD
15This script will generate a setup script for InnoSetup and then run it
16to make the installer executable. If all goes right the proper versions
17of Python and wxWindows (including hybrid/final settings) will all be
cb56afc4 18calculated based on what _core_.pyd imports and an appropriate installer
d7ec6564
RD
19will be created.
20"""
21
22
1e4a197e 23import sys, os, time
d7ec6564 24
d7ec6564 25KEEP_TEMPS = 0
0815db26 26ISCC = r"%s\InnoSetup2Ex\ISCC.exe %s"
d7ec6564
RD
27
28#----------------------------------------------------------------------
29
30ISS_Template = r'''
d7ec6564
RD
31
32[Setup]
cb56afc4
RD
33AppName = wxPython%(SHORTVER)s-%(CHARTYPE)s-%(PYVER)s
34AppVerName = wxPython %(VERSION)s (%(CHARTYPE)s) for Python %(PYTHONVER)s
35OutputBaseFilename = wxPython%(SHORTVER)s-win32-%(CHARTYPE)s-%(VERSION)s-%(PYVER)s
25379d62 36