summaryrefslogtreecommitdiff
path: root/osx
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2018-07-04 01:24:34 +0200
committerKali Kaneko (leap communications) <kali@leap.se>2018-07-07 04:49:34 +0200
commit447c6554a4ecb120c407459bb4a173e414ce25e2 (patch)
tree3aae80b3445d0dfcd17e58524d6ffd34756268f8 /osx
parentd1d4b83ed0ade3752c79594f520f43be104ab70c (diff)
[pkg] add osx bundle stub
Diffstat (limited to 'osx')
-rw-r--r--osx/generate.py78
1 files changed, 78 insertions, 0 deletions
diff --git a/osx/generate.py b/osx/generate.py
new file mode 100644
index 0000000..8982d94
--- /dev/null
+++ b/osx/generate.py
@@ -0,0 +1,78 @@
+#!/usr/bin/python
+
+import os
+import os.path
+import shutil
+import sys
+import stat
+
+# Variables ----------------------------
+# TODO consolidate version string for all builds.
+
+VERSION = "0.0.1"
+APP_NAME = "RiseupVPN"
+BUNDLE_IDENTIFIER = "se.leap.riseupvpn"
+ENTRYPOINT = "bitmask-systray"
+# Do not edit below --------------------
+
+
+here = os.path.split(os.path.abspath(__file__))[0]
+APP_PATH = os.path.abspath(here + '/../dist/' + APP_NAME + ".app")
+STAGING = os.path.abspath(here + '/../staging/')
+
+os.makedirs(APP_PATH + "/Contents/MacOS", exist_ok=True)
+
+
+f = open(APP_PATH + "/Contents/Info.plist", "w")
+f.write("""<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>English</string>
+ <key>CFBundleExecutable</key>
+ <string>%s</string>
+ <key>CFBundleGetInfoString</key>
+ <string>%s</string>
+ <key>CFBundleIconFile</key>
+ <string>app.icns</string>
+ <key>CFBundleIdentifier</key>
+ <string>%s</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleName</key>
+ <string>%s</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>%s</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>%s</string>
+ <key>NSAppleScriptEnabled</key>
+ <string>YES</string>
+ <key>NSMainNibFile</key>
+ <string>MainMenu</string>
+ <key>NSPrincipalClass</key>
+ <string>NSApplication</string>
+</dict>
+</plist>
+""" % (
+ ENTRYPOINT,
+ APP_NAME + " " + VERSION,
+ BUNDLE_IDENTIFIER,
+ APP_NAME,
+ APP_NAME + " " + VERSION,
+ VERSION))
+f.close()
+
+f = open(APP_PATH + "/Contents/PkgInfo", "w")
+f.write("APPL????")
+f.close()
+
+entrypoint_file = APP_PATH + "/Contents/MacOS/" + ENTRYPOINT
+shutil.copyfile(STAGING + '/' + ENTRYPOINT, entrypoint_file)
+
+oldmode = os.stat(entrypoint_file).st_mode
+os.chmod(entrypoint_file, oldmode | stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH)