summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorkali <kali@leap.se>2017-08-05 15:20:48 -0700
committerKali Kaneko <kali@leap.se>2017-08-14 18:09:36 -0400
commit7e89e670ec0baac063c52c4f6d3690eb6e6130ad (patch)
tree44fb4c44be22f891f3b9a62dd5da3aef3544cdbb /Makefile
parent736c57502d75dbf0d1780260f8788425403d25e6 (diff)
[pkg] move bundling scripts
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 95aa8403..347c4083 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,7 @@
DIST=dist/bitmask
NEXT_VERSION = $(shell cat pkg/next-version)
DIST_VERSION = dist/bitmask-$(NEXT_VERSION)/
-OSX_CERT = "Developer ID Installer: LEAP Encryption Access Project"
-include pkg/pyinst/build.mk
+include pkg/bundles/build.mk
include pkg/thirdparty/openvpn/build.mk
dev-bootstrap:
@@ -70,13 +69,6 @@ bundle_in_docker:
docker_container:
cd pkg/docker_bundle && docker build -t mybundle .
-osx_pkg:
- pkg/osx/quickpkg --output dist/Bitmask-$(NEXT_VERSION)_pre.pkg --scripts pkg/osx/scripts/ dist/Bitmask.app/
- productsign --sign $(OSX_CERT) dist/Bitmask-$(NEXT_VERSION)_pre.pkg dist/Bitmask-$(NEXT_VERSION).pkg
-
-cleanpkg:
- rm -rf dist build
-
clean:
find . -type f -name "*.py[co]" -delete
find . -type d -name "__pycache__" -delete