mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
87 lines
2.8 KiB
Bash
87 lines
2.8 KiB
Bash
# $Id: PKGBUILD 161877 2012-06-16 01:15:20Z ibiru $
|
|
# Maintainer : Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: Jakub Schmidtke <sjakub@gmail.com>
|
|
|
|
# ALARM: Dan Cecile <dancecile@gmail.com>
|
|
# - changed GCC from 4.6 to system default
|
|
|
|
buildarch=4
|
|
highmem=1
|
|
|
|
pkgname=firefox
|
|
pkgver=15.0
|
|
pkgrel=1
|
|
pkgdesc="Standalone web browser from mozilla.org"
|
|
arch=('i686' 'x86_64')
|
|
license=('MPL' 'GPL' 'LGPL')
|
|
depends=('gtk2' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib'
|
|
'libnotify' 'desktop-file-utils' 'hicolor-icon-theme'
|
|
'libvpx' 'libevent' 'nss>=3.13.3' 'hunspell' 'sqlite')
|
|
makedepends=('unzip' 'zip' 'diffutils' 'python2' 'wireless_tools' 'yasm' 'mesa'
|
|
'autoconf2.13' 'libidl2' 'xorg-server-xvfb' 'imake')
|
|
optdepends=('wireless_tools: Location detection via available WiFi networks')
|
|
url="http://www.mozilla.org/projects/firefox"
|
|
install=firefox.install
|
|
options=(!emptydirs)
|
|
source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
|
|
mozconfig firefox.desktop firefox-install-dir.patch vendor.js shared-libs.patch)
|
|
md5sums=('64220887a349515f16e5aa990acb4db3'
|
|
'5644c7b42f51013e2023787938fa955e'
|
|
'bdeb0380c7fae30dd0ead6d2d3bc5873'
|
|
'594523c536a9be951b52c90dd85aff18'
|
|
'0d053487907de4376d67d8f499c5502b'
|
|
'52e52f840a49eb1d14be1c0065b03a93')
|
|
|
|
build() {
|
|
cd mozilla-release
|
|
|
|
cp ../mozconfig .mozconfig
|
|
patch -Np1 -i ../firefox-install-dir.patch
|
|
patch -Np1 -i ../shared-libs.patch
|
|
|
|
# Fix PRE_RELEASE_SUFFIX
|
|
sed -i '/^PRE_RELEASE_SUFFIX := ""/s/ ""//' \
|
|
browser/base/Makefile.in
|
|
|
|
export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/firefox"
|
|
export PYTHON="/usr/bin/python2"
|
|
export MOZ_MAKE_FLAGS="$MAKEFLAGS"
|
|
unset MAKEFLAGS
|
|
|
|
# Enable PGO
|
|
export MOZ_PGO=1
|
|
export DISPLAY=:99
|
|
Xvfb -nolisten tcp -extension GLX -screen 0 1280x1024x24 $DISPLAY &
|
|
_fail=0
|
|
|
|
make -f client.mk build || _fail=1
|
|
|
|
kill $! || true
|
|
}
|
|
|
|
package() {
|
|
cd mozilla-release
|
|
make -j1 -f client.mk DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 ../vendor.js "$pkgdir/usr/lib/firefox/defaults/preferences/vendor.js"
|
|
|
|
for i in 16 22 24 32 48 256; do
|
|
install -Dm644 browser/branding/official/default$i.png \
|
|
"$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/firefox.png"
|
|
done
|
|
|
|
install -Dm644 ../firefox.desktop \
|
|
"$pkgdir/usr/share/applications/firefox.desktop"
|
|
|
|
# Use system-provided dictionaries
|
|
rm -rf "$pkgdir"/usr/lib/firefox/{dictionaries,hyphenation}
|
|
ln -s /usr/share/hunspell "$pkgdir/usr/lib/firefox/dictionaries"
|
|
ln -s /usr/share/hyphen "$pkgdir/usr/lib/firefox/hyphenation"
|
|
|
|
# We don't want the development stuff
|
|
rm -r "$pkgdir"/usr/{include,lib/firefox-devel,share/idl}
|
|
|
|
#workaround for now
|
|
#https://bugzilla.mozilla.org/show_bug.cgi?id=658850
|
|
ln -sf firefox "$pkgdir/usr/lib/firefox/firefox-bin"
|
|
}
|