2002-08-08 16:14:13 -04:00
|
|
|
#----------------------------------------------------------------------
|
|
|
|
# Name: CreateBatchFiles.py
|
2003-03-25 01:35:27 -05:00
|
|
|
# Purpose: Run by the InnoSetup installer to create a DOS batch
|
2002-08-08 16:14:13 -04:00
|
|
|
# file for each of the wxPython tool scripts.
|
|
|
|
#
|
|
|
|
# Author: Robin Dunn
|
|
|
|
#
|
|
|
|
# Created: 8-Aug-2002
|
|
|
|
# Copyright: (c) 2002 by Total Control Software
|
|
|
|
# Licence: wxWindows license
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
import sys, os
|
|
|
|
|
|
|
|
python = sys.executable
|
2002-08-08 19:02:41 -04:00
|
|
|
pythonw = 'start ' + os.path.join(os.path.split(python)[0], 'pythonw.exe')
|
2002-08-08 16:14:13 -04:00
|
|
|
scriptdir = os.getcwd()
|
|
|
|
|
2003-07-02 19:13:10 -04:00
|
|
|
scripts = [ ("img2png", 0),
|
|
|
|
("img2py", 0),
|
|
|
|
("img2xpm", 0),
|
2004-03-23 00:29:50 -05:00
|
|
|
("genaxmodule",0),
|
2003-07-02 19:13:10 -04:00
|
|
|
("xrced", 1),
|
|
|
|
("pyshell", 1),
|
|
|
|
("pycrust", 1),
|
2004-03-29 19:10:15 -05:00
|
|
|
("pywrap", 0),
|
2003-07-02 19:13:10 -04:00
|
|
|
("pyalamode", 1),
|
|
|
|
("pyalacarte", 1),
|
2003-03-25 01:35:27 -05:00
|
|
|
("helpviewer", 1),
|
2002-08-08 16:14:13 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
template = """\
|
|
|
|
@echo off
|
2002-08-08 18:34:29 -04:00
|
|
|
|
|
|
|
%s %s\\%s %%1 %%2 %%3 %%4 %%5 %%6 %%7 %%8 %%9
|
2002-08-08 16:14:13 -04:00
|
|
|
"""
|
|
|
|
|
2002-08-12 17:30:02 -04:00
|
|
|
def main():
|
|
|
|
for script, usegui in scripts:
|
|
|
|
batfile = os.path.join(scriptdir, script + '.bat')
|
|
|
|
print "Creating", batfile
|
|
|
|
f = open(batfile, 'w')
|
|
|
|
if usegui:
|
|
|
|
f.write(template % (pythonw, scriptdir, script))
|
|
|
|
else:
|
|
|
|
f.write(template % (python, scriptdir, script))
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|
2002-08-08 16:14:13 -04:00
|
|
|
|