blob: 4135fad3f614bbdf624621330cd617680bcffaa0 (
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
|
# Maintainer: Mark Wagie <mark dot wagie at tutanota dot com>
# Contributor: Matthew McGinn <mamcgi at gmail dot com>
# Contributor: alicewww <almw at protonmail dot com>
# Contributor: David Birks <david at tellus dot space>
# Contributor: Jeff Henson <jeff at henson dot io>
# Contributor: Linus Färnstrand <linus at mullvad dot net>
# Contributor: Emīls Piņķis <emil at mullvad dot net>
# Contributor: Andrej Mihajlov <and at mullvad dot net>
pkgname=mullvad-vpn
pkgver=2020.5
pkgrel=1
pkgdesc="The Mullvad VPN client app for desktop"
url="https://www.mullvad.net"
arch=('x86_64')
license=('GPL3')
depends=('libnotify' 'libappindicator-gtk3' 'libxss' 'nss')
makedepends=('git' 'go' 'rust' 'npm' 'python')
install="$pkgname.install"
_commit='f9c55513f372de96223fad3ab6bd2aa78d517387'
source=("git+https://github.com/mullvad/mullvadvpn-app.git#tag=$pkgver?signed"
"git+https://github.com/mullvad/mullvadvpn-app-binaries.git#commit=$_commit?signed"
"$pkgname.sh")
sha256sums=('SKIP'
'SKIP'
'a59c29f07b4eab9af56f0e8be42bae0d83726f5185e88de0c5a48f4098c3c0a4')
validpgpkeys=('EA0A77BF9E115615FC3BD8BC7653B940E494FE87')
# Linus Färnstrand (code signing key) <linus at mullvad dot net>
prepare() {
# Point the submodule to our local copy
cd "$srcdir/mullvadvpn-app"
git submodule init dist-assets/binaries
git config submodule.mullvadvpn-app-binaries.url "$srcdir/mullvadvpn-app-binaries"
git submodule update
# Disable building of rpm
sed -i "s/'deb', 'rpm'/'deb'/g" gui/tasks/distribution.js
export GOPATH="$srcdir/gopath"
go clean -modcache
mkdir -p dist-assets/shell-completions
}
build() {
cd "$srcdir/mullvadvpn-app"
local RUSTC_VERSION=$(rustc --version)
local PRODUCT_VERSION=$(node -p "require('./gui/package.json').version" | \
sed -Ee 's/\.0//g')
source env.sh
echo "Building Mullvad VPN $PRODUCT_VERSION..."
# Compile wireguard-go
cd "$srcdir/mullvadvpn-app/wireguard/libwg"
mkdir -p "../../build/lib/$arch-unknown-linux-gnu"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
go build -v -o "../../build/lib/$arch-unknown-linux-gnu"/libwg.a -buildmode c-archive
# Clean mod cache for makepkg -C
go clean -modcache
cd "$srcdir/mullvadvpn-app"
echo "Updating version in metadata files..."
./version-metadata.sh inject $PRODUCT_VERSION
echo "Removing old Rust build artifacts"
cargo clean
echo "Building Rust code in release mode using $RUSTC_VERSION..."
cd mullvad-cli
for sh in bash zsh; do
echo "Generating shell completion script for $sh..."
cargo run --release --locked --features shell-completions -- \
shell-completions "$sh" ../dist-assets/shell-completions/
done
cd "$srcdir/mullvadvpn-app"
MULLVAD_ADD_MANIFEST="1" cargo build --release --locked
echo "Copying binaries"
binaries=(
mullvad-daemon
mullvad
mullvad-problem-report
libtalpid_openvpn_plugin.so
mullvad-setup
mullvad-exclude
)
for binary in ${binaries[*]}; do
cp "target/release/$binary" "dist-assets/$binary"
done
# Update relay list & generate relays.json
./update-relays.sh
# Build Electron GUI app
cd gui
echo "Installing JavaScript dependencies..."
npm ci --no-optional --cache "$srcdir/npm-cache"
echo "Packing final release artifact..."
npm run pack:linux
}
#check() {
# cd "$srcdir/mullvadvpn-app"
# cargo test --release --locked
#
# cd gui
# npm test
#}
package() {
cd "$srcdir/mullvadvpn-app"
# Install main files
install -d "$pkgdir/opt/Mullvad VPN"
cp -r dist/linux-unpacked/* "$pkgdir/opt/Mullvad VPN"
# Install daemon service
install -Dm644 dist/linux-unpacked/resources/mullvad-daemon.service -t \
"$pkgdir/usr/lib/systemd/system"
# Install binaries
install -Dm755 dist-assets/{mullvad,mullvad-exclude} -t "$pkgdir/usr/bin"
# Link to the problem report binary
ln -s "/opt/Mullvad VPN/resources/mullvad-problem-report" \
"$pkgdir/usr/bin/mullvad-problem-report"
# Link to the GUI binary
install -m755 "$srcdir/$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
# Install completions
install -Dm755 dist-assets/shell-completions/mullvad.bash \
"$pkgdir/usr/share/bash-completion/completions/mullvad"
install -Dm755 dist-assets/shell-completions/_mullvad -t \
"$pkgdir/usr/share/zsh/site-functions"
# Install desktop file & icons from deb
cd dist
ar x "MullvadVPN-$pkgver.0_amd64.deb"
tar -xf data.tar.xz
install -Dm644 "usr/share/applications/$pkgname.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 -d $pkgdir/$icons_dir
install -m644 $icons_dir/$pkgname.png -t $pkgdir/$icons_dir
done
}
|