diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-11-17 23:51:12 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-11-18 11:50:01 +0100 |
commit | 9a05d0ef933169a58bbe44254a130226910ed50e (patch) | |
tree | a8526459d0e414a43cf9b5c53bf35a240f4b3808 /pkg/pyinst/build.mk | |
parent | 6a87116917c6afa7c9ff08453101fe43b54adfa9 (diff) |
[build] add gpg binary
just the one shipped with the ubuntu image used by the docker container
for now. I have to investigate how to properly use a docker container
only for building the gpg binary.
Diffstat (limited to 'pkg/pyinst/build.mk')
-rw-r--r-- | pkg/pyinst/build.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/pyinst/build.mk b/pkg/pyinst/build.mk index 38038c5..a834f4e 100644 --- a/pkg/pyinst/build.mk +++ b/pkg/pyinst/build.mk @@ -18,6 +18,10 @@ bundle_win: cp ${VIRTUAL_ENV}/Lib/site-packages/zmq/libzmq.pyd $(DIST) cp src/leap/bitmask/core/bitmaskd.tac $(DIST) +bundle_gpg: + # TODO build it in a docker container! + mkdir -p $(DIST_VERSION)/apps/mail + cp /usr/bin/gpg $(DIST_VERSION)/apps/mail/ bundle_tar: cd dist/ && tar cvzf Bitmask.$(NEXT_VERSION).tar.gz bitmask-$(NEXT_VERSION) |