71 lines
2.5 KiB
Text
71 lines
2.5 KiB
Text
# Template build file for 'firefox'.
|
|
pkgname=firefox
|
|
version=8.0
|
|
revision=1
|
|
wrksrc=mozilla-release
|
|
distfiles="ftp://ftp.mozilla.org/pub/mozilla.org/${pkgname}/releases/${version}/source/${pkgname}-${version}.source.tar.bz2"
|
|
short_desc="Lightweight gecko-based web browser"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.mozilla.org/projects/firefox"
|
|
license="MPL-1.1, GPL-2, LGPL-2.1"
|
|
checksum=d950324ecd5362a648a891a66c3f2dde5e69b09f30ef8470b7759ec007691139
|
|
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."
|
|
|
|
gtk_iconcache_dirs="/usr/share/icons/hicolor"
|
|
|
|
Add_dependency run desktop-file-utils
|
|
Add_dependency run hicolor-icon-theme
|
|
|
|
Add_dependency build unzip
|
|
Add_dependency build zip
|
|
Add_dependency build perl ">=0"
|
|
Add_dependency build python ">=2.7.2_3" # linux2 sys.platform fix
|
|
Add_dependency build yasm
|
|
Add_dependency build pixman-devel
|
|
Add_dependency build libIDL-devel
|
|
Add_dependency build nss-devel
|
|
Add_dependency build gtk+-devel
|
|
Add_dependency build libevent-devel
|
|
Add_dependency build libnotify-devel
|
|
Add_dependency build libvpx-devel
|
|
Add_dependency build libXrender-devel
|
|
Add_dependency build libXScrnSaver-devel
|
|
Add_dependency build GConf-devel
|
|
Add_dependency build startup-notification-devel
|
|
Add_dependency build dbus-glib-devel
|
|
Add_dependency build alsa-lib-devel
|
|
Add_dependency build hunspell-devel
|
|
Add_dependency build wireless_tools-devel
|
|
|
|
do_build() {
|
|
# Fix PRE_RELEASE_SUFFIX
|
|
sed -i '/^PRE_RELEASE_SUFFIX := ""/s/ ""//' browser/base/Makefile.in
|
|
cp -f ${FILESDIR}/mozconfig .mozconfig
|
|
export LDFLAGS="$XBPS_LDFLAGS -Wl,-R/usr/lib/firefox"
|
|
make -f client.mk MOZ_MAKE_FLAGS="${makejobs}"
|
|
}
|
|
|
|
do_install() {
|
|
make -f client.mk DESTDIR=${DESTDIR} install
|
|
|
|
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
|
|
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
|
|
}
|