~ubuntu-branches/ubuntu/quantal/torchat/quantal

« back to all changes in this revision

Viewing changes to torchat_linux.spec

  • Committer: Bazaar Package Importer
  • Author(s): Ulises Vitulli
  • Date: 2011-04-16 23:35:04 UTC
  • Revision ID: james.westby@ubuntu.com-20110416233504-j4dulunjoc224vfp
Tags: upstream-0.9.9.534
ImportĀ upstreamĀ versionĀ 0.9.9.534

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- mode: python -*-
 
2
 
 
3
# this is the spec file for pyinstaller
 
4
# which is used in make_debian_package.py
 
5
# to freeze torchat.py into a one-file executable
 
6
 
 
7
a = Analysis([os.path.join(HOMEPATH,'support/_mountzlib.py'), os.path.join(HOMEPATH,'support/useUnicode.py'), 'torchat.py'],
 
8
             pathex=['.'])
 
9
pyz = PYZ(a.pure)
 
10
exe = EXE( pyz,
 
11
          a.scripts,
 
12
          a.binaries,
 
13
          a.zipfiles,
 
14
          a.datas,
 
15
          name=os.path.join('dist', 'torchat'),
 
16
          debug=False,
 
17
          strip=True,
 
18
          upx=True,
 
19
          console=1 )