2008-10-09 01:28:54 +02:00
|
|
|
# Template build file for 'firefox'.
|
|
|
|
pkgname=firefox
|
2013-11-19 07:06:52 +01:00
|
|
|
version=25.0.1
|
2013-06-25 09:15:32 +02:00
|
|
|
revision=1
|
2011-11-05 12:33:37 +01:00
|
|
|
wrksrc=mozilla-release
|
2008-10-09 01:28:54 +02:00
|
|
|
short_desc="Lightweight gecko-based web browser"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2013-08-07 09:40:16 +02:00
|
|
|
homepage="https://www.mozilla.org/firefox/"
|
2011-11-05 12:33:37 +01:00
|
|
|
license="MPL-1.1, GPL-2, LGPL-2.1"
|
2012-06-06 21:19:58 +02:00
|
|
|
distfiles="${MOZILLA_SITE}/${pkgname}/releases/${version}/source/${pkgname}-${version}.source.tar.bz2"
|
2013-11-19 07:06:52 +01:00
|
|
|
checksum=e5d0667faeec3a0372831b23d0c6804524e134d1ebc4b7e080042491678d4f0b
|
2013-02-08 10:11:53 +01:00
|
|
|
|
2013-09-18 09:33:51 +02:00
|
|
|
only_for_archs="i686 x86_64"
|
2013-04-03 10:34:19 +02:00
|
|
|
hostmakedepends="unzip zip pkg-config perl python yasm"
|
2013-09-18 09:33:51 +02:00
|
|
|
makedepends="libjpeg-turbo-devel libpng-devel>=1.6 gst-plugins-base-devel
|
2013-08-07 11:07:22 +02:00
|
|
|
pixman-devel libIDL-devel nss-devel>=3.15.1 sqlite-devel
|
2013-05-14 22:25:44 +02: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"
|
2012-10-09 14:28:39 +02:00
|
|
|
|
2013-09-18 09:33:51 +02: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 11:53:59 +01:00
|
|
|
pre_build() {
|
2013-09-18 09:33:51 +02: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 11:44:35 +01:00
|
|
|
# Fix PRE_RELEASE_SUFFIX
|
|
|
|
sed -i '/^PRE_RELEASE_SUFFIX := ""/s/ ""//' browser/base/Makefile.in
|
2011-11-05 12:33:37 +01:00
|
|
|
cp -f ${FILESDIR}/mozconfig .mozconfig
|
2013-11-01 11:53:59 +01:00
|
|
|
}
|
2012-01-31 22:14:23 +01:00
|
|
|
|
2013-11-01 11:53:59 +01:00
|
|
|
do_build() {
|
|
|
|
export LDFLAGS+=" -Wl,-R/usr/lib/firefox"
|
|
|
|
SHELL=/bin/bash make -f client.mk MOZ_MAKE_FLAGS="${makejobs}"
|
2011-11-05 12:33:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
2013-11-01 11:53:59 +01:00
|
|
|
HOME=/tmp make -f client.mk DESTDIR=${DESTDIR} install
|
2011-11-05 12:33:37 +01:00
|
|
|
|
2013-05-14 23:49:04 +02:00
|
|
|
vinstall ${FILESDIR}/vendor.js 644 usr/lib/firefox/browser/defaults/preferences
|
2011-11-05 12:33:37 +01:00
|
|
|
vinstall ${FILESDIR}/firefox.desktop 644 usr/share/applications
|
2013-05-14 23:49:04 +02:00
|
|
|
|
2011-11-05 12:33:37 +01: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 23:49:04 +02: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 23:49:23 +02:00
|
|
|
ln -s /usr/share/hyphen ${DESTDIR}/usr/lib/firefox/hyphenation
|
2013-05-14 23:49:04 +02:00
|
|
|
|
2011-11-05 12:33:37 +01:00
|
|
|
# We don't want the development stuff
|
2011-11-06 22:26:59 +01:00
|
|
|
rm -rf ${DESTDIR}/usr/{include,lib/firefox-devel,share/idl}
|
2009-12-21 23:08:02 +01:00
|
|
|
|
2011-11-05 12:33:37 +01:00
|
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=658850
|
2011-11-06 22:26:59 +01:00
|
|
|
ln -sf firefox ${DESTDIR}/usr/lib/firefox/firefox-bin
|
2009-12-21 23:08:02 +01:00
|
|
|
}
|
2013-04-12 11:16:02 +02:00
|
|
|
|
|
|
|
firefox_package() {
|
|
|
|
depends="desktop-file-utils hicolor-icon-theme"
|
|
|
|
pkg_install() {
|
2013-04-30 11:51:35 +02:00
|
|
|
vmove all
|
2013-04-12 11:16:02 +02:00
|
|
|
}
|
|
|
|
}
|