2011-03-22 01:19:59 +01:00
|
|
|
# Description: The Mozilla Firefox browser
|
2006-02-23 17:10:28 +00:00
|
|
|
# URL: http://www.mozilla.com/firefox/
|
2010-05-13 23:34:28 +02:00
|
|
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
|
2012-08-31 23:36:10 +02:00
|
|
|
# Depends on: nss, libidl, gtk, python, alsa-lib, yasm, mesa3d
|
2014-02-04 17:58:31 +01:00
|
|
|
|
2006-02-23 17:10:28 +00:00
|
|
|
name=firefox
|
2015-05-15 02:34:43 +02:00
|
|
|
version=38.0.1
|
2014-03-19 13:22:23 +01:00
|
|
|
release=1
|
2015-05-12 22:20:05 +02:00
|
|
|
source=(http://ftp.mozilla.org/pub/firefox/releases/$version/source/firefox-$version.source.tar.bz2
|
|
|
|
firefox-install-dir.patch firefox.desktop)
|
2014-02-04 17:58:31 +01:00
|
|
|
|
2006-02-23 17:10:28 +00:00
|
|
|
build() {
|
2011-06-22 19:51:26 +02:00
|
|
|
cd mozilla-release
|
2014-02-04 17:58:31 +01:00
|
|
|
|
2015-02-24 20:57:32 +01:00
|
|
|
patch -p1 -i $SRC/firefox-install-dir.patch
|
2015-03-31 21:55:41 +02:00
|
|
|
|
2014-02-04 17:58:31 +01:00
|
|
|
cat <<- EOF > .mozconfig
|
2013-12-10 18:07:37 +01:00
|
|
|
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-shared
|
|
|
|
mk_add_options MOZ_MAKE_FLAGS="$MAKEFLAGS -s"
|
|
|
|
ac_add_options --prefix=/usr
|
2014-02-15 23:37:37 +01:00
|
|
|
ac_add_options --with-system-jpeg
|
2013-12-10 18:07:37 +01:00
|
|
|
ac_add_options --with-system-zlib
|
|
|
|
ac_add_options --with-system-mng
|
2014-02-15 22:34:55 +01:00
|
|
|
ac_add_options --with-system-png
|
2013-12-10 18:07:37 +01:00
|
|
|
ac_add_options --with-system-nspr
|
|
|
|
ac_add_options --with-system-nss
|
|
|
|
ac_add_options --enable-system-ffi
|
|
|
|
ac_add_options --enable-system-pixman
|
|
|
|
ac_add_options --enable-system-sqlite
|
|
|
|
ac_add_options --enable-system-cairo
|
|
|
|
ac_add_options --with-pthreads
|
2015-02-24 20:57:32 +01:00
|
|
|
ac_add_options --enable-optimize="$CFLAGS"
|
2013-12-10 18:07:37 +01:00
|
|
|
ac_add_options --enable-official-branding
|
|
|
|
ac_add_options --enable-extensions=default,-gnomevfs
|
|
|
|
ac_add_options --enable-shared
|
|
|
|
ac_add_options --enable-svg
|
|
|
|
ac_add_options --enable-canvas
|
|
|
|
ac_add_options --enable-crypto
|
|
|
|
ac_add_options --enable-single-profile
|
|
|
|
ac_add_options --enable-places
|
|
|
|
ac_add_options --enable-storage
|
|
|
|
ac_add_options --enable-places_bookmarks
|
|
|
|
ac_add_options --enable-image-encoder=all
|
|
|
|
ac_add_options --enable-xft
|
|
|
|
ac_add_options --disable-static
|
|
|
|
ac_add_options --disable-tests
|
|
|
|
ac_add_options --disable-mochitest
|
|
|
|
ac_add_options --disable-dbus
|
|
|
|
ac_add_options --disable-debug
|
|
|
|
ac_add_options --disable-installer
|
|
|
|
ac_add_options --disable-updater
|
|
|
|
ac_add_options --disable-xprint
|
|
|
|
ac_add_options --disable-profilesharing
|
|
|
|
ac_add_options --disable-gnomevfs
|
|
|
|
ac_add_options --disable-gnomeui
|
|
|
|
ac_add_options --disable-mailnews
|
|
|
|
ac_add_options --disable-crashreporter
|
|
|
|
ac_add_options --disable-necko-wifi
|
|
|
|
ac_add_options --disable-libnotify
|
|
|
|
ac_add_options --disable-gstreamer
|
2014-03-19 13:22:23 +01:00
|
|
|
ac_add_options --disable-pulseaudio
|
2013-12-10 18:07:37 +01:00
|
|
|
EOF
|
2011-03-22 01:19:59 +01:00
|
|
|
|
2014-02-04 17:58:31 +01:00
|
|
|
make -f client.mk build
|
|
|
|
make -f client.mk DESTDIR=$PKG install
|
|
|
|
|
2013-06-25 18:18:06 +02:00
|
|
|
mkdir -p $PKG/usr/share/pixmaps
|
2014-02-09 21:04:57 +01:00
|
|
|
ln -s /usr/lib/firefox/browser/chrome/icons/default/default48.png $PKG/usr/share/pixmaps/firefox_default48.png
|
2013-06-25 18:18:06 +02:00
|
|
|
install -D -m 0644 $SRC/firefox.desktop $PKG/usr/share/applications/firefox.desktop
|
2006-02-23 17:10:28 +00:00
|
|
|
}
|