Files
pyinstaller/buildtests/test4.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

14 lines
369 B
RPMSpec

a = Analysis(['../support/_mountzlib.py', 'test4.py'],
pathex=[])
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
[('u', '', 'OPTION')],
exclude_binaries=1,
name='buildtest4/test4.exe',
debug=0,
console=1)
coll = COLLECT( exe,
a.binaries,
name='disttest4')