a790f99d9b
Security advisory: https://www.mozilla.org/security/known-vulnerabilities/firefox.html
93 lines
3.1 KiB
Plaintext
93 lines
3.1 KiB
Plaintext
# Description: The Mozilla Firefox browser
|
|
# URL: http://www.mozilla.com/firefox/
|
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
|
|
# Depends on: nss, libidl, gtk, python, alsa-lib, yasm, mesa3d
|
|
|
|
name=firefox
|
|
version=26.0
|
|
release=1
|
|
source=(ftp://ftp.mozilla.org/pub/firefox/releases/$version/source/firefox-$version.source.tar.bz2
|
|
firefox.desktop)
|
|
|
|
build() {
|
|
export MOZ_CO_PROJECT=browser
|
|
export BUILD_OFFICIAL=1
|
|
export MOZILLA_OFFICIAL=1
|
|
export MOZILLA_FIVE_HOME=/usr/lib/firefox
|
|
|
|
cd mozilla-release
|
|
|
|
cat <<- EOF > .mozconfig
|
|
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-shared
|
|
mk_add_options MOZ_MAKE_FLAGS="$MAKEFLAGS -s"
|
|
ac_add_options --prefix=/usr
|
|
#ac_add_options --with-system-jpeg
|
|
ac_add_options --with-system-zlib
|
|
ac_add_options --with-system-mng
|
|
ac_add_options --with-system-png
|
|
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
|
|
ac_add_options --enable-optimize="$CFLAGS -mno-avx"
|
|
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
|
|
EOF
|
|
mkdir $SRC/mozilla-release/js/src/.deps
|
|
|
|
./configure
|
|
make
|
|
install -d \
|
|
$PKG$MOZILLA_FIVE_HOME \
|
|
$PKG/usr/bin \
|
|
$PKG/usr/share/idl/firefox \
|
|
$PKG/usr/include/firefox
|
|
|
|
cp -rL dist/bin/* $PKG$MOZILLA_FIVE_HOME
|
|
ln -s /usr/lib/firefox/firefox $PKG/usr/bin/firefox
|
|
|
|
# devel stuff
|
|
cp -frL dist/idl/* $PKG/usr/share/idl/firefox/
|
|
cp -frL dist/include/* $PKG/usr/include/firefox/
|
|
|
|
install -d $PKG/etc/ld.so.conf.d
|
|
echo "/usr/lib/$name" > $PKG/etc/ld.so.conf.d/$name.conf
|
|
|
|
# cleanup
|
|
find $PKG -type f -empty -delete
|
|
|
|
# desktop stuff
|
|
mkdir -p $PKG/usr/share/pixmaps
|
|
ln -s /usr/lib/firefox/browser/chrome/browser/content/branding/icon48.png $PKG/usr/share/pixmaps/firefox_default48.png
|
|
install -D -m 0644 $SRC/firefox.desktop $PKG/usr/share/applications/firefox.desktop
|
|
}
|