Files
2008-08-04 17:01:37 +00:00

17 lines
455 B
RPMSpec

# -*- mode: python -*-
__testname__ = 'test12'
a = Analysis(['../support/_mountzlib.py', 'test12.py'],
pathex=[])
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=1,
name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'),
debug=0,
console=1)
coll = COLLECT( exe,
a.binaries,
name=os.path.join('dist', __testname__),)