blob: a275bc95cc359e4f551d3eb540c55a9665461eba (
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
# Contributor: David Birks <david at tellus dot space>
# Contributor: Jeff Henson <jeff at henson dot io>
pkgname=(
'mullvad-vpn-beta'
'mullvad-vpn-daemon-beta'
)
pkgbase=mullvad-vpn-beta
_pkgver=2026.3
_channel=stable
_rel=1
#pkgver=${_pkgver}.${_channel}${_rel} # beta
pkgver=${_pkgver}.${_channel} # stable
pkgrel=1
_nodeversion=24
pkgdesc="The Mullvad VPN client app for desktop - beta channel"
arch=('x86_64')
url="https://www.mullvad.net"
license=('GPL-3.0-or-later')
depends=(
'alsa-lib'
'gtk3'
'iputils'
'libnftnl'
'libnotify'
'nss'
)
makedepends=(
'cargo'
'git'
'libxcrypt-compat'
'nvm'
'protobuf'
'typescript'
)
source=(
# "git+https://github.com/mullvad/mullvadvpn-app.git#tag=${_pkgver}-${_channel}${_rel}?signed" # beta
"git+https://github.com/mullvad/mullvadvpn-app.git#tag=${_pkgver}?signed" # stable
"git+https://github.com/mullvad/mullvadvpn-app-binaries.git"
'no-rpm.diff'
'no-publish.diff'
"${pkgbase%-beta}.sh"
)
sha256sums=('6c93c3ad7e7e1695da7e8c374bbe451f525fd5e02bc680c30f4c47976de0cf2e'
'SKIP'
'f3976a76352b09677487569a8538819fd393dbd6c8dbc6345f3022a08054faa9'
'0cd7bccb05af010cc26cb0a0bb91cb68f279c4d64d7ace35e1902f020bf50311'
'2262346cb57deb187fe32a88ccd873dab669598889269088e749197c6e88954f')
validpgpkeys=('225E40C8F1C8DEB7977ABF59F293063FECE2E8ED' # Linus Färnstrand <linus@mullvad.net>
'7ED98188F8F9AFF15D49E41BEB8D8AD83E8DA7BC' # David Lönnhager <david.l@mullvad.net>
'1D0026CBD1F1858DF8DB54DFCB87E2B919A6454C' # Oskar Nyberg <oskar@mullvad.net>
'049F58CC80D9C78452151EE6EF0CCD68D0E5B9B1' # Emīls Piņķis <emils@mullvad.net>
)
_ensure_local_nvm() {
# let's be sure we are starting clean
which nvm >/dev/null 2>&1 && nvm deactivate && nvm unload
export NVM_DIR="$srcdir/.nvm"
# The init script returns 3 if version specified
# in ./.nvrc is not (yet) installed in $NVM_DIR
# but nvm itself still gets loaded ok
source /usr/share/nvm/init-nvm.sh || [[ $? != 1 ]]
}
prepare() {
cd mullvadvpn-app
git submodule init dist-assets/binaries
git config submodule.dist-assets/binaries.url "$srcdir/mullvadvpn-app-binaries"
git -c protocol.file.allow=always submodule update
# Disable building rpm
patch --strip=1 desktop/packages/${pkgbase%-beta}/tasks/distribution.cjs < ../no-rpm.diff
# Disable publishing for CIs
patch --strip=1 desktop/packages/${pkgbase%-beta}/tasks/distribution.cjs < ../no-publish.diff
# Create shell-completions output directory
mkdir -p build/shell-completions
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target host-tuple
_ensure_local_nvm
nvm install "${_nodeversion}"
echo "Installing JavaScript dependencies..."
pushd desktop
export npm_config_cache="$srcdir/npm_cache"
npm run ci
popd
}
build() {
cd mullvadvpn-app
CFLAGS+=" -ffat-lto-objects"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
local RUSTC_VERSION=$(rustc --version)
local PRODUCT_VERSION=$(cargo run -q --bin mullvad-version)
local CARGO_ARGS=(--frozen --release)
echo "Building Mullvad VPN ${PRODUCT_VERSION}..."
echo "Building Rust code in release mode using ${RUSTC_VERSION}..."
cargo_crates_to_build=(
-p mullvad-daemon --bin mullvad-daemon
-p mullvad-cli --bin mullvad
-p mullvad-setup --bin mullvad-setup
-p mullvad-problem-report --bin mullvad-problem-report
-p mullvad-exclude --bin mullvad-exclude
)
cargo build "${CARGO_ARGS[@]}" "${cargo_crates_to_build[@]}"
echo "Preparing for packaging Mullvad VPN ${PRODUCT_VERSION}..."
for sh in bash zsh fish; do
echo "Generating shell completion script for ${sh}..."
cargo run --bin mullvad "${CARGO_ARGS[@]}" -- shell-completions "${sh}" \
build/shell-completions/
done
# Move binaries to correct locations in dist-assets
binaries=(
mullvad-daemon
mullvad
mullvad-problem-report
mullvad-setup
mullvad-exclude
)
for binary in ${binaries[*]}; do
cp "target/release/${binary}" "dist-assets/${binary}"
done
echo "Packing Mullvad VPN ${PRODUCT_VERSION} artifact(s)..."
pushd "desktop/packages/${pkgbase%-beta}"
export npm_config_cache="$srcdir/npm_cache"
_ensure_local_nvm
npm run pack:linux --release
popd
}
package_mullvad-vpn-beta() {
pkgdesc+=" (desktop application)"
depends+=('mullvad-vpn-daemon-beta')
optdepends=('libappindicator: tray icon')
provides=("${pkgname%-beta}")
conflicts=("${pkgname%-beta}")
install="${pkgname%-beta}.install"
cd mullvadvpn-app
install -d "$pkgdir/opt/Mullvad VPN"
cp -r dist/linux-unpacked/* "$pkgdir/opt/Mullvad VPN/"
chmod 4755 "$pkgdir/opt/Mullvad VPN/chrome-sandbox"
install -Dm755 "$srcdir/${pkgname%-beta}.sh" "$pkgdir/usr/bin/${pkgname%-beta}"
install -d "$pkgdir/usr/share/doc/$pkgname"
ln -s "/opt/Mullvad VPN/resources/CHANGELOG.md" "$pkgdir/usr/share/doc/$pkgname/"
# Remove mullvad-vpn-daemon files
rm "$pkgdir/opt/Mullvad VPN"/resources/{ca.crt,mullvad-{problem-report,setup},relays.json}
# Install desktop file & icons from deb
cd dist
ar x *.deb
bsdtar -xf data.tar.xz
install -Dm644 "usr/share/applications/${pkgname%-beta}.desktop" -t \
"$pkgdir/usr/share/applications/"
for icon_size in 16 32 48 64 128 256 512 1024; do
icons_dir="usr/share/icons/hicolor/${icon_size}x${icon_size}/apps"
install -Dm644 "${icons_dir}/${pkgname%-beta}.png" -t "$pkgdir/${icons_dir}/"
done
# The AppArmor profile allows Electron sandbox to work
# This disables user namespace restrictions
install -d "$pkgdir/etc/apparmor.d"
ln -s "/opt/Mullvad VPN/resources/apparmor_mullvad" "$pkgdir/etc/apparmor.d/mullvad"
}
package_mullvad-vpn-daemon-beta() {
pkgdesc+=" (daemon and CLI)"
depends=(
'dbus'
'iputils'
'libnftnl'
)
provides=("${pkgname%-beta}")
conflicts=("${pkgname%-beta}")
install="${pkgname%-beta}.install"
cd mullvadvpn-app
install -Dm755 dist-assets/{mullvad,mullvad{-daemon,-exclude}} -t "$pkgdir/usr/bin/"
install -Dm755 target/release/mullvad{-problem-report,-setup} -t \
"$pkgdir/opt/Mullvad VPN/resources/"
ln -s "/opt/Mullvad VPN/resources/mullvad-problem-report" "$pkgdir/usr/bin/"
install -Dm644 dist-assets/ca.crt -t "$pkgdir/opt/Mullvad VPN/resources/"
install -m644 dist-assets/relays/relays.json -t "$pkgdir/opt/Mullvad VPN/resources/"
install -Dm644 dist-assets/linux/mullvad{-daemon,-early-boot-blocking}.service -t \
"$pkgdir/usr/lib/systemd/system/"
install -Dm644 build/shell-completions/mullvad.bash \
"$pkgdir/usr/share/bash-completion/completions/mullvad"
install -Dm644 build/shell-completions/_mullvad -t \
"$pkgdir/usr/share/zsh/site-functions/"
install -Dm644 build/shell-completions/mullvad.fish -t \
"$pkgdir/usr/share/fish/vendor_completions.d/"
}
|