blob: 7bc02a34ed56f5fcce0eb886901a63fef7161cce (
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
|
# Maintainer: GI_Jack <GI_Jack@hackermail.com>
_plugin_name=foxyproxy
_plugin_version=8.10
_plugin_id=4425860
_plugin_ext=""
pkgdesc="FoxyProxy is an advanced proxy management tool that completely replaces LibreWolf's limited proxying capabilities."
license=('GPL')
pkgname=librewolf-extension-$_plugin_name
pkgver=$_plugin_version
pkgrel=1
arch=('any')
url="https://addons.mozilla.org/en-US/firefox/addon/foxyproxy-standard/"
depends=("librewolf>=57")
source=("https://addons.mozilla.org/firefox/downloads/file/${_plugin_id}/foxyproxy_standard-${pkgver}${_plugin_ext}.xpi")
noextract=('foxyproxy_standard-${pkgver}${_plugin_ext}.xpi')
sha256sums=('80ab6ac87b8c8ef92b92f61dc3508e8ba42e4bd736ac03b3970e2a25457549dc')
package() {
cd "${srcdir}"
_extension_id="foxyproxy@eric.h.jung"
_extension_dest="${pkgdir}/usr/lib/librewolf/browser/extensions/${_extension_id}"
install -Dm644 foxyproxy_standard-${pkgver}${_plugin_ext}.xpi "${_extension_dest}.xpi"
}
|