summaryrefslogtreecommitdiff
path: root/win/generate.py
diff options
context:
space:
mode:
Diffstat (limited to 'win/generate.py')
-rwxr-xr-xwin/generate.py45
1 files changed, 45 insertions, 0 deletions
diff --git a/win/generate.py b/win/generate.py
new file mode 100755
index 0000000..efc2108
--- /dev/null
+++ b/win/generate.py
@@ -0,0 +1,45 @@
+"""
+generate.py
+
+Generate a NSI installer for a given provider.
+"""
+
+from string import Template
+
+from provider import *
+
+
+TEMPLATE = 'template.nsi'
+INSTALLER = APP_NAME + '-installer.nsi'
+
+
+def get_files(which):
+ files = "\n"
+ if which == 'install':
+ action = "File "
+ elif which == 'uninstall':
+ action = "Delete $INSTDIR\\"
+ else:
+ action = ""
+
+ # TODO get relative path
+ for item in open('payload/' + which).readlines():
+ files += " {action}{item}".format(
+ action=action, item=item)
+ return files
+
+
+vardict = {
+ 'app_name': APP_NAME,
+ 'app_name_lower': APP_NAME.lower(),
+ 'url': URL,
+ 'extra_install_files': get_files('install'),
+ 'extra_uninstall_files': get_files('uninstall')
+}
+
+
+template = Template(open(TEMPLATE).read())
+with open(INSTALLER, 'w') as output:
+ output.write(template.safe_substitute(vardict))
+
+print("[+] NSIS installer script written to {path}".format(path=INSTALLER))