commit 7daccf143f0a337043fae604e0d63499cf4b2cf5
parent 56dc9f7f809fdf3c14a552950cf6b5a508bb8b35
Author: ThomasV <thomasv@gitorious>
Date: Sat, 21 Feb 2015 10:53:54 +0100
update pyinstaller spec file
Diffstat:
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/contrib/build-wine/deterministic.spec b/contrib/build-wine/deterministic.spec
@@ -6,7 +6,7 @@ a = Analysis(['electrum', 'gui/qt/main_window.py', 'gui/qt/lite_window.py', 'gui
'lib/bitcoin.py'
],
hiddenimports=["lib","gui"],
- pathex=['lib:gui:plugins'],
+ pathex=['lib','gui','plugins','packages'],
hookspath=None)
##### include mydir in distribution #######
@@ -29,11 +29,8 @@ def extra_datas(mydir):
# append dirs
-# Theme data
-a.datas += extra_datas('data')
-
-# Localization
-a.datas += extra_datas('locale')
+# cacert.pem
+a.datas += [ ('requests/cacert.pem', 'packages/requests/cacert.pem', 'DATA') ]
# Py folders that are needed because of the magic import finding
a.datas += extra_datas('gui')