Files
pyinstaller/buildtests/test2.spec
T
giovannibajo b98a53df92 Imported Python Installer 5b5
git-svn-id: http://svn.pyinstaller.org/trunk@2 8dd32b29-ccff-0310-8a9a-9233e24343b1
2005-09-02 17:15:02 +00:00

17 lines
500 B
RPMSpec

config['useZLIB'] = 0
a = Analysis(['../support/_mountzlib.py', 'test2.py'],
pathex=[],
hookspath=['hooks1'])
pyz = PYZ(a.pure, level=0)
exe = EXE(pyz,
a.scripts,
exclude_binaries=1,
name='buildtest2/test2.exe',
icon='test2.ico',
version='test2-version.txt',
debug=0,
console=1)
coll = COLLECT( exe,
a.binaries - [('zlib','','EXTENSION')],
name='disttest2')