diff options
author | Rahul P | 2020-08-08 18:14:17 +0530 |
---|---|---|
committer | GitHub | 2020-08-08 18:14:17 +0530 |
commit | 3d86dae3fcdc85b23012a5c347fa8f9abe0c4f40 (patch) | |
tree | 82746da6b424c3d196d3d847065f1b36b4316e35 /Ubuntu/eSim.spec | |
parent | f5f3afe6b5ff6af20370e12fd186f81449fd0713 (diff) | |
parent | c3832418ddb492148886055611a78459673c05bf (diff) | |
download | eSim-3d86dae3fcdc85b23012a5c347fa8f9abe0c4f40.tar.gz eSim-3d86dae3fcdc85b23012a5c347fa8f9abe0c4f40.tar.bz2 eSim-3d86dae3fcdc85b23012a5c347fa8f9abe0c4f40.zip |
Merge pull request #155 from rahulp13/installers
added support for NGHDL and reduced KiCad for Windows OS; updated installers and docs for v2.1
Diffstat (limited to 'Ubuntu/eSim.spec')
-rw-r--r-- | Ubuntu/eSim.spec | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Ubuntu/eSim.spec b/Ubuntu/eSim.spec new file mode 100644 index 00000000..15061f6b --- /dev/null +++ b/Ubuntu/eSim.spec @@ -0,0 +1,34 @@ +# -*- mode: python ; coding: utf-8 -*- + +block_cipher = None + +a = Analysis(['eSim-2.0/src/frontEnd/Application.py'], + pathex=['/home/rahul/Music'], + binaries=[], + datas=[], + hiddenimports=['PyQt4.sip'], + hookspath=[], + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False) +pyz = PYZ(a.pure, a.zipped_data, + cipher=block_cipher) +exe = EXE(pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + [], + name='eSim', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=True, + version='eSim-2.0/VERSION', + icon='eSim-2.0/images/logo.png') |