diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-07-08 20:43:12 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2020-10-13 19:08:31 +0200 |
commit | 1ae11e5c615c996cbef3db694fc571bfe6524d1d (patch) | |
tree | 6b7ed7d16c0647ce5c86bb2c1b8c6e94972fade1 /installer/bitmask-installer.pro | |
parent | a1216b2e17fb62f73a44ccec3734c6e579e65645 (diff) |
[pkg] boilerplate for qtinstaller framework
Diffstat (limited to 'installer/bitmask-installer.pro')
-rw-r--r-- | installer/bitmask-installer.pro | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/installer/bitmask-installer.pro b/installer/bitmask-installer.pro new file mode 100644 index 0000000..c526283 --- /dev/null +++ b/installer/bitmask-installer.pro @@ -0,0 +1,21 @@ +TEMPLATE = aux + +CONFIG -= debug_and_release + +INSTALLER = RiseupVPN-Installer + +INPUT = $$PWD/config/config.xml $$PWD/packages +inst.input = INPUT +inst.output = $$INSTALLER +inst.commands = binarycreator -c $$PWD/config/config.xml -p $$PWD/packages ${QMAKE_FILE_OUT} +inst.CONFIG += target_predeps no_link combine + +QMAKE_EXTRA_COMPILERS += inst + +OTHER_FILES += \ +# watch out... it chokes with dashes in the path + packages/riseupvpn/meta/package.xml \ + packages/riseupvpn/meta/install.js \ + packages/riseupvpn/data/README.txt \ + packages/riseupvpn/data/riseup-vpn + |