blob: 7f2f16ac54606fb61e1fd43b91f1b3efaf62f9ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
Branding for BitmaskVPN
================================================================================
This folder contains everything that is needed to generate a customized built of
the Desktop BitmaskVPN app for a given 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. If you want to skip this check, pass `SKIP_CACHECK=yes`
Run::
PROVIDER=example make vendor
Then you can build the binary::
./build.sh
* The following does not work yet! in progress ------------------
Then you can build all the packages::
make packages
Alternatively, you can build only for an specific os::
make package_win
make package_osx
make package_snap
make package_deb
|