diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2019-08-06 17:57:18 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2019-08-06 19:39:52 +0200 |
commit | 503721070e709324adc7ba4037de33ed5079458f (patch) | |
tree | c1e7ef0733a06f172096f7b7cada1a6dd8148322 /branding/README.rst | |
parent | 81e9e16e6feaa2833e3544d3fe8d04fda60d009f (diff) |
[pkg] squash targets
Diffstat (limited to 'branding/README.rst')
-rw-r--r-- | branding/README.rst | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/branding/README.rst b/branding/README.rst new file mode 100644 index 0000000..86423cc --- /dev/null +++ b/branding/README.rst @@ -0,0 +1,51 @@ +Branding for BitmaskVPN +================================================================================ + +This folder contains everything that is needed to generate a customized built of +BitmaskVPN for your provider. + + +Configure +-------------------------------------------------------------------------------- + +* Copy or edit the file at 'branding/config/vendor.conf'. Add all the needed variables. +* Copy your provider CA certificate to the same folder: 'branding/config/<provider>-ca.crt' +* Make sure that the folder 'branding/assets/<provider>' exists. Copy there all the needed assets. + +Checkout +-------------------------------------------------------------------------------- + + git clone https://0xacab.org/leap/bitmask-vpn + cd bitmask-vpn + git pull --tags + + +Package +-------------------------------------------------------------------------------- + +NOTE: Some of the following scripts need network access, since they will check +whether the configuration published by your provider matches what is configured +before the build. + +Run:: + + PROVIDER=example make prepare + +You can also specify a custom config file:: + + PROVIDER=example PROVIDER_CONFIG=/path/to/vendor.conf make prepare + +Then you need to build the package:: + + make build + +Then you can build all the packages:: + + make pkg + +Alternatively, you can build only for an specific os:: + + make pkg_win + make pkg_osx + make pkg_snap + make pkg_deb |