mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
extra/firefox to 41.0.2-1
This commit is contained in:
parent
95611df535
commit
1d0837cbef
2 changed files with 41 additions and 3 deletions
|
@ -6,8 +6,10 @@
|
|||
# - mozconfig changes for ARM
|
||||
# - patch to remove NEON/SIMD checks from configure
|
||||
|
||||
highmem=1
|
||||
|
||||
pkgname=firefox
|
||||
pkgver=41.0.1
|
||||
pkgver=41.0.2
|
||||
pkgrel=1
|
||||
pkgdesc="Standalone web browser from mozilla.org"
|
||||
arch=('i686' 'x86_64')
|
||||
|
@ -15,7 +17,7 @@ license=('MPL' 'GPL' 'LGPL')
|
|||
url="https://www.mozilla.org/firefox/"
|
||||
depends=('gtk2' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
|
||||
'dbus-glib' 'alsa-lib' 'desktop-file-utils' 'hicolor-icon-theme'
|
||||
'libvpx' 'icu' 'libevent' 'nss' 'hunspell' 'sqlite')
|
||||
'libvpx' 'icu' 'libevent' 'nss' 'hunspell' 'sqlite' 'ttf-font')
|
||||
makedepends=('unzip' 'zip' 'diffutils' 'python2' 'yasm' 'mesa' 'imake' 'gconf'
|
||||
'xorg-server-xvfb' 'libpulse' 'gst-plugins-base-libs'
|
||||
'inetutils')
|
||||
|
@ -30,13 +32,15 @@ source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/
|
|||
firefox.desktop
|
||||
firefox-install-dir.patch
|
||||
vendor.js
|
||||
freetype261.patch
|
||||
firefox-fixed-loading-icon.png
|
||||
no-neon.patch)
|
||||
sha256sums=('47b2cfc26b17559c26b95a584ab14b6efba132ca371b8aa30da2e2167e0612c3'
|
||||
sha256sums=('ff00689f4d2ff54c5eb7b3aa367560a3645800eb0c96e73a795e461461b1970e'
|
||||
'11a16ea86073de5a6e7c1c665c954f0cf184932abbb55fc906ba1671e5b7162e'
|
||||
'c202e5e18da1eeddd2e1d81cb3436813f11e44585ca7357c4c5f1bddd4bec826'
|
||||
'd86e41d87363656ee62e12543e2f5181aadcff448e406ef3218e91865ae775cd'
|
||||
'4b50e9aec03432e21b44d18c4c97b2630bace606b033f7d556c9d3e3eb0f4fa4'
|
||||
'd3796311f93328fc8494d75a2123d29e51d52c3f01ffea0977efbfbe12171809'
|
||||
'68e3a5b47c6d175cc95b98b069a15205f027cab83af9e075818d38610feb6213'
|
||||
'6d0c1c9ca28b20d206ce24ca84f4d4e3f5d062a2e9cb7445fcb6c2cfea959b4a')
|
||||
validpgpkeys=('2B90598A745E992F315E22C58AB132963A06537A')
|
||||
|
@ -63,6 +67,9 @@ prepare() {
|
|||
cp ../mozconfig .mozconfig
|
||||
patch -Np1 -i ../firefox-install-dir.patch
|
||||
|
||||
# https://bugzilla.mozilla.org/show_bug.cgi?id=1194520
|
||||
patch -Np1 -i ../freetype261.patch
|
||||
|
||||
echo -n "$_google_api_key" >google-api-key
|
||||
echo "ac_add_options --with-google-api-keyfile=\"$PWD/google-api-key\"" >>.mozconfig
|
||||
|
||||
|
@ -87,6 +94,7 @@ prepare() {
|
|||
browser/themes/linux/tabbrowser/loading.png
|
||||
|
||||
patch -Np0 -i ../no-neon.patch
|
||||
[[ $CARCH == "aarch64" ]] && echo "ac_add_options --disable-gold" >> .mozconfig
|
||||
}
|
||||
|
||||
build() {
|
||||
|
|
30
extra/firefox/freetype261.patch
Normal file
30
extra/firefox/freetype261.patch
Normal file
|
@ -0,0 +1,30 @@
|
|||
|
||||
# HG changeset patch
|
||||
# User Mike Hommey <mh+mozilla@glandium.org>
|
||||
# Date 1439509838 -32400
|
||||
# Node ID ffb931f910498504782f4df88206b9cb911b33a4
|
||||
# Parent 467ce7a8340d008a5999e57198035d492b7bc79f
|
||||
Bug 1194520 - Add a system header wrapper for <freetype/ftfntfmt.h>. r=mshal a=ritu
|
||||
|
||||
diff --git a/config/system-headers b/config/system-headers
|
||||
--- a/config/system-headers
|
||||
+++ b/config/system-headers
|
||||
@@ -453,16 +453,17 @@ foundation/base64.h
|
||||
foundation/hexdump.h
|
||||
#endif
|
||||
fp.h
|
||||
fpieee.h
|
||||
frame/log.h
|
||||
frame/req.h
|
||||
freetype/freetype.h
|
||||
freetype/ftcache.h
|
||||
+freetype/ftfntfmt.h
|
||||
freetype/ftglyph.h
|
||||
freetype/ftsynth.h
|
||||
freetype/ftoutln.h
|
||||
freetype/ttnameid.h
|
||||
freetype/tttables.h
|
||||
freetype/t1tables.h
|
||||
freetype/ftlcdfil.h
|
||||
freetype/ftsizes.h
|
||||
|
Loading…
Reference in a new issue