diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-09-27 14:33:39 -0400 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-09-27 16:19:26 -0400 |
commit | 40debc7182d9a20cc2a1ec2b6a162a065a3183c0 (patch) | |
tree | 9f782637b691ae994be632f3f5f76fe8a93d5afd /pkg/pyinst/Makefile | |
parent | 4d8e63e890e88c58feb750dd56ecbf60bed9b462 (diff) |
[pkg] some bundling hacks
Diffstat (limited to 'pkg/pyinst/Makefile')
-rw-r--r-- | pkg/pyinst/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pkg/pyinst/Makefile b/pkg/pyinst/Makefile index 72d19ae..41599a4 100644 --- a/pkg/pyinst/Makefile +++ b/pkg/pyinst/Makefile @@ -1,5 +1,10 @@ +build: clean + pyinstaller -y app.spec + cp $(VIRTUAL_ENV)/lib/python2.7/site-packages/_scrypt.so dist/bitmask/ + cp ../../src/leap/bitmask/core/bitmaskd.tac dist/bitmask + mkdir dist/bitmask/leap + cp -r $(VIRTUAL_ENV)/lib/python2.7/site-packages/leap/bitmask_js/ dist/bitmask/leap + clean: rm -rf dist build -build: clean - pyinstaller -y app.spec |