void-packages/srcpkgs/firefox/template

62 lines
2.3 KiB
Text
Raw Normal View History

# 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
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"
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
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"
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"
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
# 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
}
2012-01-31 21:14:23 +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() {
HOME=/tmp make -f client.mk DESTDIR=${DESTDIR} install
2011-11-05 11:33:37 +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
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
# 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
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}
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
}