blob: 0fef5fdd8a8387c38b8548b24a412b55bbf1e042 (
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
|
# Maintainer: tarball <bootctl@gmail.com>
# Contributor: Mark Wagie <mark.wagie@proton.me>
#
# Fetching the signing key:
# https://mullvad.net/en/help/verifying-mullvad-browser-signature
pkgname=mullvad-browser-bin
pkgver=14.0.3
pkgrel=2
pkgdesc='Privacy-focused web browser developed by Mullvad VPN and the Tor Project'
arch=(x86_64)
url=https://mullvad.net/en/browser
license=(GPL-3.0-or-later MPL-2.0)
depends=(
alsa-lib
at-spi2-core
bash
cairo
dbus
dbus-glib
fontconfig
freetype2
gcc-libs
gdk-pixbuf2
glib2
glibc
gtk3
hicolor-icon-theme
libpulse
libx11
libxcb
libxcomposite
libxcursor
libxdamage
libxext
libxfixes
libxi
libxrandr
libxrender
libxss
libxt
libxtst
mime-types
nspr
nss
pango
ttf-font
)
optdepends=(
'pipewire-pulse: Sound support when using PipeWire'
'hunspell-en_US: Spell checking, American English'
'libnotify: Notification integration'
'networkmanager: Location detection via available WiFi networks'
'speech-dispatcher: Text-to-Speech'
'xdg-desktop-portal: Screensharing with Wayland'
)
provides=(mullvad-browser=$pkgver mullvad-browser)
conflicts=(mullvad-browser)
# This package used cdn.mullvad.net for the first 10 months or so and was then
# switched to GitHub because the former is very slow or completely inaccessible
# in some parts of the world:
# 1. areas geographically furthest from Europe
# 2. countries that block access to VPN providers
# If you don't want to download from Microsoft, please replace the line below
# with a sibling commented out line and rebuild.
source=(
https://github.com/mullvad/mullvad-browser/releases/download/$pkgver/mullvad-browser-linux-x86_64-$pkgver.tar.xz{,.asc}
#https://cdn.mullvad.net/browser/$pkgver/mullvad-browser-linux-x86_64-$pkgver.tar.xz{,.asc}
mullvad-browser.sh
mullvad-browser.desktop
)
validpgpkeys=(
'EF6E286DDA85EA2A4BA7DE684E2C6E8793298290' # Tor Browser Developers (signing key) <torbrowser@torproject.org>
)
changelog='mullvad-browser.changelog'
sha256sums=('2afebd43aa3f5b0eb8c80f32e49dc95c8578f00d81d3c621344f626ff52e034a'
'SKIP'
'0fbfcc63591c661fd73de462a123e6daeae01d7ebc5981c8793227369d77b565'
'9bb24b8e210112b1222d028285c6d68ab599f8382b2b108ab69284948bb4ac70')
package() {
cd mullvad-browser
# only owner has access to all files
chmod --recursive a+r .
find . -executable -execdir chmod a+x '{}' +
# copy files from archive
install -dm0755 "$pkgdir/opt/mullvad-browser/"
cp --archive Browser/* "$pkgdir/opt/mullvad-browser/"
# ask it to create profiles in ~
touch "$pkgdir/opt/mullvad-browser/system-install"
# disable built-in updates
touch "$pkgdir/opt/mullvad-browser/is-packaged-app"
# cli wrapper
install -Dm0755 "$srcdir/mullvad-browser.sh" "$pkgdir/usr/bin/mullvad-browser"
# desktop file for various launchers
install -Dm0644 -t "$pkgdir/usr/share/applications/" "$srcdir/mullvad-browser.desktop"
# icons
for size in 16 32 48 64 128; do
install -Dm0644 "$pkgdir/opt/mullvad-browser/browser/chrome/icons/default/default$size.png" \
"$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/mullvad-browser.png"
done
# license files
install -dm0755 "$pkgdir/usr/share/licenses/"
ln -sf /opt/mullvad-browser/MullvadBrowser/Docs/Licenses \
"$pkgdir/usr/share/licenses/mullvad-browser"
}
|