blob: dfd5c5c5b6a46ddfe4d9bb17b9948f8154d6b5e6 (
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
|
# Maintainer:
# Contributor: Alexey Peschany <archlinux at sandboiii dot xyz>
# options
if [ -z "$_srcinfo" ] && [ -z "$_pkgver" ]; then
: ${_autoupdate:=true}
fi
: ${_pkgtype:=-bin}
_pkgname="mercury-browser"
pkgname="$_pkgname${_pkgtype:-}"
pkgver=129.0.2
pkgrel=1
pkgdesc="Compiler optimized, private Firefox fork"
url="https://github.com/Alex313031/Mercury"
license=('MPL-2.0')
arch=('x86_64')
options=('!emptydirs' '!strip' '!debug')
install="$_pkgname.install"
_source_main() {
: ${_dl_filename:=${_pkgname}_${_pkgver:?}_SSE3.deb}
: ${_dl_url:=$url/releases/download/v.$_pkgver/$_dl_filename}
noextract+=("$_dl_filename")
source=("$_dl_filename"::"$_dl_url")
sha256sums=('SKIP')
}
pkgver() {
echo "${_pkgver:?}"
}
prepare() {
install -Dvm644 /dev/stdin "$_pkgname.desktop" << END
[Desktop Entry]
Version=1.0
Name=Mercury
Comment=Browse the World Wide Web
GenericName=Web Browser
Keywords=Internet;WWW;Browser;Web;Explorer;Mercury
Exec=$_pkgname %u
StartupWMClass=mercury-default
Terminal=false
X-MultipleArgs=true
Type=Application
Icon=$_pkgname
Categories=GNOME;GTK;Network;WebBrowser;
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;x-scheme-handler/chrome;video/webm;application/x-xpinstall;
StartupNotify=true
Actions=NewWindow;NewPrivateWindow;TempUserDir;
[Desktop Action NewWindow]
Name=New Window
Exec=$_pkgname -new-window
[Desktop Action NewPrivateWindow]
Name=New Private Window
Exec=$_pkgname -private-window
[Desktop Action TempUserDir]
Name=Open With Temporary User Profile
Exec=$_pkgname --temp-profile
END
install -Dvm644 /dev/stdin "$_pkgname.sh" << END
#!/usr/bin/env bash
# check microprocessor architecture level
if grep -qE '\bpni\b' /proc/cpuinfo ; then
_message=''
_message+=\$'The fastest Firefox fork on Earth.'
else
_message=''
_message+=\$'Your processor does not support SSE3 instructions.\n'
_message+=\$'mercury-browser may not work on your computer.'
fi
# Allow users to override command-line options
XDG_CONFIG_HOME=\${XDG_CONFIG_HOME:-~/.config}
_FLAGFILE="\$XDG_CONFIG_HOME/mercury-flags.conf"
if [[ -f "\$_FLAGFILE" ]]; then
_USER_FLAGS=\$(cat "\$_FLAGFILE")
fi
# display processor support message
if tty -s ; then
echo "\$_message"
else
[ ! -e "\$HOME/.mercury" ] && notify-send -a "mercury-browser" -t 7500 "\$_message"
fi
# Launch
exec /opt/mercury-browser/mercury \$_USER_FLAGS "\$@"
END
}
package() {
provides=("$_pkgname=${pkgver%%.r*}")
conflicts=("$_pkgname")
depends+=(
'alsa-lib'
'dbus-glib'
'gtk3'
'libnotify' # notify-send
)
local _filetype="zip"
if bsdtar -xf "$_dl_filename" -- data.tar.* &> /dev/null; then
_filetype="deb"
fi
if [[ "${_filetype::1}" == 'z' ]]; then
_package_zip
else
_package_deb
fi
# script
\rm -rf "$pkgdir/usr/bin/mercury-browser"
install -Dm755 "$_pkgname.sh" "$pkgdir/usr/bin/$_pkgname"
# icon
install -Dm644 "$pkgdir/opt/$_pkgname/browser/chrome/icons/default/default128.png" "$pkgdir/usr/share/pixmaps/$_pkgname.png"
# .desktop
\rm -rf "$pkgdir/usr/share/applications/mercury-browser.desktop"
install -Dm644 "$_pkgname.desktop" "$pkgdir/usr/share/applications/$_pkgname.desktop"
# symlink duplicate file
ln -sf "/usr/bin/$_pkgname" "$pkgdir/opt/$_pkgname/mercury-bin"
# remove unnecessary folders
\rm -rf "$pkgdir/usr/lib/"
\rm -rf "$pkgdir/usr/share/doc/"
\rm -rf "$pkgdir/usr/share/icons"
\rm -rf "$pkgdir/usr/share/lintian/"
\rm -rf "$pkgdir/usr/share/man/"
# fix permissions
chmod -R u+rwX,go+rX,go-w "$pkgdir/"
}
_package_deb() {
# extract archive
bsdtar -xf "$_dl_filename" data.tar.*
bsdtar -xf data.tar.gz -C "$pkgdir/"
rm data.tar.gz
# move files from /lib to /opt
install -dm755 "$pkgdir/opt/$_pkgname"
mv "$pkgdir/usr/lib/mercury"/* "$pkgdir/opt/$_pkgname/"
}
_package_zip() {
local _depth=$(
bsdtar -tf "$_dl_filename" -- */mercury/mercury$ \
| tr -cd '/' | wc -c
)
# extract archive
install -dm755 "$pkgdir/opt/$_pkgname"
bsdtar --strip-components="$_depth" -C "$pkgdir/opt/$_pkgname/" -xf "$_dl_filename" '*/mercury/*'
}
_update_version() {
: ${_pkgver:=${pkgver%%.r*}}
if [[ "${_autoupdate::1}" != "t" ]]; then
return
fi
local _blacklist _response _tags _tag _pkgver_new
_blacklist=(
"v.121.0.2" # windows only
)
_response=$(curl -Ssf "$url/releases.atom")
_tags=$(
printf '%s' "$_response" \
| grep '/releases/tag/' \
| sed -E 's@^.*/releases/tag/(.*)".*$@\1@' \
| grep -Ev '[a-z]{2}'
)
for i in "${_blacklist[@]}"; do
_tags=${_tags/$i/}
done
_tag=$(printf '%s' "$_tags" | sort -rV | head -1)
_pkgver_new="${_tag#v.}"
# update _pkgver
if [ "$_pkgver" != "${_pkgver_new:?}" ]; then
_pkgver="${_pkgver_new:?}"
fi
}
_update_version
_source_main
|