void-packages/srcpkgs/firefox/template

79 lines
2.8 KiB
Plaintext
Raw Normal View History

# Template build file for 'firefox'.
pkgname=firefox
2012-02-19 10:27:46 +01:00
version=10.0.2
2011-11-05 12:33:37 +01:00
wrksrc=mozilla-release
2012-01-31 22:14:23 +01:00
distfiles="${MOZILLA_SITE}/${pkgname}/releases/${version}/source/${pkgname}-${version}.source.tar.bz2"
short_desc="Lightweight gecko-based web browser"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-11-05 12:33:37 +01:00
homepage="http://www.mozilla.org/projects/firefox"
license="MPL-1.1, GPL-2, LGPL-2.1"
2012-02-19 10:27:46 +01:00
checksum=6ec5feba56f180a6fbf437a68cf0c77146ade28b936e5187573e3d95f13a0449
long_desc="
Mozilla Firefox is a free, open-source and cross-platform web browser
for Windows, Linux, MacOS X and many other operating systems. It is
small, fast and easy to use, and offers many advantages over other web
browsers, such as tabbed browsing and the ability to block pop-up
windows.
Firefox also offers excellent bookmark and history management, and it
can be extended by developers using industry standards such as XML,
CSS, JavaScript, C++, etc. Many extensions are available."
2011-11-05 12:33:37 +01:00
gtk_iconcache_dirs="/usr/share/icons/hicolor"
Add_dependency run desktop-file-utils
Add_dependency run hicolor-icon-theme
2010-10-29 11:22:43 +02:00
2011-11-05 12:33:37 +01:00
Add_dependency build unzip
Add_dependency build zip
2011-07-04 10:33:20 +02:00
Add_dependency build perl ">=0"
2011-11-05 12:33:37 +01:00
Add_dependency build python ">=2.7.2_3" # linux2 sys.platform fix
2011-07-04 10:33:20 +02:00
Add_dependency build yasm
2011-12-20 14:53:31 +01:00
Add_dependency build jpeg-devel
2012-01-31 22:14:23 +01:00
Add_dependency build libpng-devel
Add_dependency build pixman-devel
2011-11-05 12:33:37 +01:00
Add_dependency build libIDL-devel
Add_dependency build nss-devel
2011-12-20 14:53:31 +01:00
Add_dependency build sqlite-devel
2012-01-31 22:14:23 +01:00
Add_dependency build libXrender-devel
Add_dependency build libXScrnSaver-devel
Add_dependency build gtk+-devel
2011-07-04 10:33:20 +02:00
Add_dependency build libevent-devel
2011-11-05 12:33:37 +01:00
Add_dependency build libnotify-devel
Add_dependency build libvpx-devel
2011-11-05 20:27:38 +01:00
Add_dependency build GConf-devel
2011-11-05 12:33:37 +01:00
Add_dependency build startup-notification-devel
Add_dependency build dbus-glib-devel
Add_dependency build alsa-lib-devel
2011-07-04 10:33:20 +02:00
Add_dependency build hunspell-devel
2011-11-05 12:33:37 +01:00
Add_dependency build wireless_tools-devel
do_build() {
# 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
2011-11-06 22:26:59 +01:00
export LDFLAGS="$XBPS_LDFLAGS -Wl,-R/usr/lib/firefox"
2012-01-31 22:14:23 +01:00
# Fix for libvpx-1.0.0 detection.
sed -i -e "s|VPX_CODEC_USE_INPUT_PARTITION|VPX_CODEC_USE_INPUT_FRAGMENTS|g" configure
2011-12-22 11:23:35 +01:00
make ${makejobs} -f client.mk MOZ_MAKE_FLAGS="${makejobs}"
2011-11-05 12:33:37 +01:00
}
do_install() {
make -f client.mk DESTDIR=${DESTDIR} install
2012-01-31 22:14:23 +01:00
vinstall ${FILESDIR}/vendor.js 644 usr/lib/firefox/defaults/pref
2011-11-05 12:33:37 +01:00
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
# 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}
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
}