void-packages/srcpkgs/firefox/template

62 lines
2.3 KiB
Plaintext

# Template build file for 'firefox'.
pkgname=firefox
version=27.0.1
revision=2
wrksrc=mozilla-release
short_desc="Lightweight gecko-based web browser"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="https://www.mozilla.org/firefox/"
license="MPL-1.1, GPL-2, LGPL-2.1"
distfiles="${MOZILLA_SITE}/${pkgname}/releases/${version}/source/${pkgname}-${version}.source.tar.bz2"
checksum=76057ac365fe60b51915e8dba2960546fb3a60a2b5747207a8c936e4fc280d8f
hostmakedepends="unzip zip pkg-config perl python yasm"
makedepends="nss-devel>=3.15.4 libjpeg-turbo-devel libpng-devel>=1.6
pixman-devel sqlite-devel gst-plugins-base-devel gtk+-devel
libevent-devel libnotify-devel libvpx-devel libXrender-devel
startup-notification-devel dbus-glib-devel alsa-lib-devel
hunspell-devel>=1.3.2 libSM-devel libXScrnSaver-devel libXt-devel
alsa-plugins-pulseaudio"
depends="nss>=3.15.4 desktop-file-utils hicolor-icon-theme alsa-plugins-pulseaudio"
pre_build() {
# 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"
echo -n "$_google_api_key" >google-api-key
cp -f ${FILESDIR}/mozconfig .mozconfig
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
}
do_build() {
export LDFLAGS+=" -Wl,-R/usr/lib/firefox"
SHELL=/bin/bash make -f client.mk MOZ_MAKE_FLAGS="${makejobs}"
}
do_install() {
HOME=/tmp make -f client.mk DESTDIR=${DESTDIR} install
vinstall ${FILESDIR}/vendor.js 644 usr/lib/firefox/browser/defaults/preferences
vinstall ${FILESDIR}/firefox.desktop 644 usr/share/applications
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
ln -s /usr/share/hyphen ${DESTDIR}/usr/lib/firefox/hyphenation
# We don't want the development stuff
rm -rf ${DESTDIR}/usr/{include,lib/firefox-devel,share/idl}
# https://bugzilla.mozilla.org/show_bug.cgi?id=658850
ln -sf firefox ${DESTDIR}/usr/lib/firefox/firefox-bin
}