mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 07:36:12 +00:00
bbf540d9aa
git-svn-id: http://svn.pyinstaller.org/trunk@514 8dd32b29-ccff-0310-8a9a-9233e24343b1
18 lines
488 B
RPMSpec
18 lines
488 B
RPMSpec
# -*- mode: python -*-
|
|
|
|
__testname__ = 'test4i'
|
|
|
|
a = Analysis(['../support/_mountzlib.py', 'test4i.py'],
|
|
pathex=[])
|
|
pyz = PYZ(a.pure)
|
|
exe = EXE(pyz,
|
|
a.scripts,
|
|
[('u', '', 'OPTION')],
|
|
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__),)
|