blob: 529a47c88ad0ea42f43043e4a7c86f01653f0487 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
appId: net.mullvad.vpn
copyright: Amagicom AB
productName: Mullvad VPN
asar: true
compression: maximum
# assets bundled on all platforms
extraResources:
# master.mullvad.net certificate used by mullvad-daemon
- from: dist-assets/ca.crt
to: .
- from: dist-assets/crl.pem
to: .
- from: dist-assets/relays.json
to: .
- from: CHANGELOG.md
to: .
directories:
buildResources: dist-assets/
output: dist/
files:
- package.json
- init.js
- build/
- node_modules/
mac:
target: pkg
artifactName: MullvadVPN-${version}.${ext}
category: public.app-category.tools
extendInfo:
LSUIElement: true
extraResources:
- from: ./target/release/mullvad
to: .
- from: ./target/release/problem-report
to: .
- from: ./target/release/mullvad-daemon
to: .
- from: ./target/release/libtalpid_openvpn_plugin.dylib
to: .
- from: ./dist-assets/binaries/macos/openvpn
to: .
pkg:
allowAnywhere: false
allowCurrentUserHome: false
isRelocatable: false
nsis:
oneClick: false
perMachine: true
allowElevation: true
allowToChangeInstallationDirectory: true
include: dist-assets/windows/installer.nsh
win:
target:
- target: nsis
arch:
- x64
artifactName: MullvadVPN-${version}.${ext}
extraResources:
- from: ./target/release/mullvad.exe
to: .
- from: ./target/release/problem-report.exe
to: .
- from: ./target/release/mullvad-daemon.exe
to: .
- from: ./target/release/talpid_openvpn_plugin.dll
to: .
- from: ./windows/winfw/bin/x64-Release/winfw.dll
to: .
- from: ./windows/windns/bin/x64-Release/windns.dll
to: .
- from: ./windows/winroute/bin/x64-Release/winroute.dll
to: .
- from: ./dist-assets/binaries/windows/openvpn.exe
to: .
linux:
target:
- deb
- rpm
artifactName: MullvadVPN-${version}_${arch}.${ext}
category: Network
extraResources:
- from: ./target/release/mullvad
to: .
- from: ./target/release/problem-report
to: .
- from: ./target/release/mullvad-daemon
to: .
- from: ./target/release/libtalpid_openvpn_plugin.so
to: .
- from: ./dist-assets/binaries/linux/openvpn
to: .
deb:
fpm: ["--config-files", "/etc/systemd/system/mullvad-daemon.service",
"./dist-assets/linux/mullvad-daemon.service=/etc/systemd/system/"]
afterInstall: ./dist-assets/linux/install_script.sh
afterRemove: ./dist-assets/linux/uninstall_script.sh
rpm:
fpm: ["--config-files", "/etc/systemd/system/mullvad-daemon.service",
"./dist-assets/linux/mullvad-daemon.service=/etc/systemd/system/"]
afterInstall: ./dist-assets/linux/install_script.sh
afterRemove: ./dist-assets/linux/uninstall_script.sh
|