void-packages/srcpkgs/firefox/template

62 lines
2.3 KiB
Text
Raw Normal View History

# Template build file for 'firefox'.
pkgname=firefox
2014-02-14 08:50:13 +00:00
version=27.0.1
revision=2
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"
2014-02-14 08:50:13 +00:00
checksum=76057ac365fe60b51915e8dba2960546fb3a60a2b5747207a8c936e4fc280d8f
2013-02-08 09:11:53 +00:00
hostmakedepends="unzip zip pkg-config perl python yasm"
2014-02-04 17:28:03 +00:00
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"
2012-10-09 12:28:39 +00:00
pre_build() {
2014-02-14 08:50:13 +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-09-18 07:33:51 +00:00
echo -n "$_google_api_key" >google-api-key
2014-02-14 08:50:13 +00:00
cp -f ${FILESDIR}/mozconfig .mozconfig
2013-09-18 07:33:51 +00:00
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
}
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
}