diff options
Diffstat (limited to 'libre')
-rw-r--r-- | libre/iceweasel/PKGBUILD | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/libre/iceweasel/PKGBUILD b/libre/iceweasel/PKGBUILD index b9682c814..c3ff85b28 100644 --- a/libre/iceweasel/PKGBUILD +++ b/libre/iceweasel/PKGBUILD @@ -16,6 +16,7 @@ # Contributor: Luke R. <g4jc@openmailbox.org> # Contributor: Isaac David <isacdaavid@isacdaavid.info> # Contributor: bill-auger <bill-auger@programmer.net> +# Contributor: grizzlyuser <grizzlyuser@protonmail.com> # Rational for inclusion in [libre]: @@ -40,16 +41,16 @@ pkgname=iceweasel replaces=('firefox') epoch=1 -pkgver=71.0 +pkgver=72.0.1 pkgrel=1 pkgrel+=.parabola1 _brandingver=70.0 _brandingrel=1 -pkgdesc="Standalone web browser based on Mozilla Firefox" +pkgdesc="Standalone web browser derived from Mozilla Firefox" arch=(x86_64) arch+=(i686 armv7h) license=(MPL GPL LGPL) -url="https://wiki.parabola.nu/$pkgname" +url="https://wiki.parabola.nu/Iceweasel" depends=(gtk3 libxt startup-notification mime-types dbus-glib ffmpeg nss ttf-font libpulse) depends+=(sqlite icu) @@ -71,14 +72,14 @@ source+=(https://repo.parabola.nu/other/iceweasel/${pkgname}_${_brandingver}-${_ firefox-70.0-add-distro.patch libre.patch libre-searchengines.patch) -sha256sums=('78304cd58229e7103b56b34718aad051c9a4db30c266512a64f501ba58da7fbe' +sha256sums=('1fa59aedc8469c3e6ffb12449ab7de2f93776f7679eedebfb74aa309b694956f' 'SKIP' '5f7ac724a5c5afd9322b1e59006f4170ea5354ca1e0e60dab08b7784c2d8463c' 'f573d00835afe066ef1887bfea35099933ee07aeadc4c0d603972127e600cfc4' 'e90956067d8549f02864d612369ed8714d7173f0ee07bbfb4374a7323b4a733e' 'SKIP' '41ab298519dfdf86e1599990cd2a2e4d939a2a1d77de829caa0593d0d2e8f0e8' - '698e73d66bb94d82cc11bc0a56cb59455b3b0b51798a48ad7a7b4c429104647e' + '497b0b7d15364acec4b8706ab41ce4aefd4fd1d7f1baa7980a46d14cca8aedd8' 'dfed11d97f1d4198a3dc608be159b6b53a11054f376cdb73bb0fe9a487ae9418') validpgpkeys=('14F26682D0916CDD81E37B6D61B7B526D98F0353') # Mozilla Software Releases <release@mozilla.com> validpgpkeys+=('BFA8008A8265677063B11BF47171986E4B745536') # Andreas Grapentin @@ -88,9 +89,11 @@ prepare() { cd firefox-$pkgver # https://bugzilla.mozilla.org/show_bug.cgi?id=1530052 + msg "applying 0001-Use-remoting-name-for-GDK-application-names.patch" patch -Np1 -i ../0001-Use-remoting-name-for-GDK-application-names.patch # https://bugzilla.mozilla.org/show_bug.cgi?id=1212502 + msg "applying firefox-70.0-add-distro.patch" patch -Np1 -i ../firefox-70.0-add-distro.patch cat >../mozconfig <<END @@ -181,6 +184,7 @@ END quilt push -av # Remove remaining non-free bits + msg "applying libre.patch" patch -Np1 -i "$srcdir/libre.patch" # Disable various components at the source level @@ -201,6 +205,7 @@ END # local _remove_engines_sed='s|.*oogle.*| "ddg", "duckduckgo-html", "duckduckgo-lite", "internet-archive", "parabola-labs", "parabola-packages", "parabola-wiki-en", "searx", "wikipedia", "yacy"|g' local _remove_engines_sed='s|.*oogle.*| "ddg", "wikipedia"|g' local _search_config_file=browser/components/search/extensions/list.json + msg "applying libre-searchengines.patch" patch -Np1 -i "$srcdir/libre-searchengines.patch" sed -i "${_remove_engines_sed}" ${_search_config_file} @@ -655,4 +660,3 @@ END fi } -# vim:set sw=2 et: |