2008-10-08 23:28:54 +00:00
|
|
|
# Template build file for 'firefox'.
|
|
|
|
pkgname=firefox
|
2013-12-26 17:20:24 +00:00
|
|
|
version=26.0
|
2013-06-25 07:15:32 +00:00
|
|
|
revision=1
|
2011-11-05 11:33:37 +00:00
|
|
|
wrksrc=mozilla-release
|
2008-10-08 23:28:54 +00:00
|
|
|
short_desc="Lightweight gecko-based web browser"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2013-08-07 07:40:16 +00:00
|
|
|
homepage="https://www.mozilla.org/firefox/"
|
2011-11-05 11:33:37 +00:00
|
|
|
license="MPL-1.1, GPL-2, LGPL-2.1"
|
2012-06-06 19:19:58 +00:00
|
|
|
distfiles="${MOZILLA_SITE}/${pkgname}/releases/${version}/source/${pkgname}-${version}.source.tar.bz2"
|
2013-12-26 17:20:24 +00:00
|
|
|
checksum=31c4fb2792df63ae450e350380a5e18cf1c51487011a9da0b6cc4bffb69d9812
|
2013-02-08 09:11:53 +00:00
|
|
|
|
2013-09-18 07:33:51 +00:00
|
|
|
only_for_archs="i686 x86_64"
|
2013-04-03 08:34:19 +00:00
|
|
|
hostmakedepends="unzip zip pkg-config perl python yasm"
|
2013-09-18 07:33:51 +00:00
|
|
|
makedepends="libjpeg-turbo-devel libpng-devel>=1.6 gst-plugins-base-devel
|
2013-08-07 09:07:22 +00:00
|
|
|
pixman-devel libIDL-devel nss-devel>=3.15.1 sqlite-devel
|
2013-05-14 20:25:44 +00:00
|
|
|
gtk+-devel libevent-devel libnotify-devel libvpx-devel libXrender-devel
|
|
|
|
startup-notification-devel dbus-glib-devel alsa-lib-devel
|
|
|
|
hunspell-devel libXScrnSaver-devel libXt-devel"
|
2014-01-01 15:10:11 +00:00
|
|
|
depends="desktop-file-utils hicolor-icon-theme"
|
2012-10-09 12:28:39 +00:00
|
|
|
|
2013-09-18 07:33:51 +00:00
|
|
|
# Google API key (see http://www.chromium.org/developers/how-tos/api-keys)
|
|
|
|
# Note: This is for Void Linux use ONLY.
|
|
|
|
_google_api_key="AIzaSyCIFdBA7eQP43R6kXRwTq7j6Mvj1ITze90"
|
|
|
|
|
2013-11-01 10:53:59 +00:00
|
|
|
pre_build() {
|
2013-09-18 07:33:51 +00:00
|
|
|
echo -n "$_google_api_key" >google-api-key
|
|
|
|
echo "ac_add_options --with-google-api-keyfile=\"${wrksrc}/google-api-key\"" >>.mozconfig
|
|
|
|
|
2011-11-06 10:44:35 +00:00
|
|
|
# Fix PRE_RELEASE_SUFFIX
|
|
|
|
sed -i '/^PRE_RELEASE_SUFFIX := ""/s/ ""//' browser/base/Makefile.in
|
2011-11-05 11:33:37 +00:00
|
|
|
cp -f ${FILESDIR}/mozconfig .mozconfig
|
2013-11-01 10:53:59 +00:00
|
|
|
}
|
2012-01-31 21:14:23 +00:00
|
|
|
|
2013-11-01 10:53:59 +00:00
|
|
|
do_build() {
|
|
|
|
export LDFLAGS+=" -Wl,-R/usr/lib/firefox"
|
|
|
|
SHELL=/bin/bash make -f client.mk MOZ_MAKE_FLAGS="${makejobs}"
|
2011-11-05 11:33:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
2013-11-01 10:53:59 +00:00
|
|
|
HOME=/tmp make -f client.mk DESTDIR=${DESTDIR} install
|
2011-11-05 11:33:37 +00:00
|
|
|
|
2013-05-14 21:49:04 +00:00
|
|
|
vinstall ${FILESDIR}/vendor.js 644 usr/lib/firefox/browser/defaults/preferences
|
2011-11-05 11:33:37 +00:00
|
|
|
vinstall ${FILESDIR}/firefox.desktop 644 usr/share/applications
|
2013-05-14 21:49:04 +00:00
|
|
|
|
2011-11-05 11:33:37 +00:00
|
|
|
for i in 16x16 22x22 24x24 32x32 48x48 256x256; do
|
|
|
|
vinstall browser/branding/official/default${i%x*}.png 644 \
|
|
|
|
usr/share/icons/hicolor/${i}/apps firefox.png
|
|
|
|
done
|
|
|
|
|
2013-05-14 21:49:04 +00:00
|
|
|
# Use system-provided dictionaries
|
|
|
|
rm -rf ${DESTDIR}/usr/lib/firefox/{dictionaries,hyphenation}
|
|
|
|
ln -s /usr/share/hunspell ${DESTDIR}/usr/lib/firefox/dictionaries
|
2013-05-14 21:49:23 +00:00
|
|
|
ln -s /usr/share/hyphen ${DESTDIR}/usr/lib/firefox/hyphenation
|
2013-05-14 21:49:04 +00:00
|
|
|
|
2011-11-05 11:33:37 +00:00
|
|
|
# We don't want the development stuff
|
2011-11-06 21:26:59 +00:00
|
|
|
rm -rf ${DESTDIR}/usr/{include,lib/firefox-devel,share/idl}
|
2009-12-21 22:08:02 +00:00
|
|
|
|
2011-11-05 11:33:37 +00:00
|
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=658850
|
2011-11-06 21:26:59 +00:00
|
|
|
ln -sf firefox ${DESTDIR}/usr/lib/firefox/firefox-bin
|
2009-12-21 22:08:02 +00:00
|
|
|
}
|