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
|
2006-02-23 17:10:28 +00:00
|
|
|
|
|
|
|
name=firefox
|
2013-12-10 18:07:37 +01:00
|
|
|
version=26.0
|
2013-05-14 19:11:14 +02:00
|
|
|
release=1
|
2011-12-20 20:23:49 +01:00
|
|
|
source=(ftp://ftp.mozilla.org/pub/firefox/releases/$version/source/firefox-$version.source.tar.bz2
|
2013-12-10 18:07:37 +01:00
|
|
|
firefox.desktop)
|
2012-04-22 16:28:26 +02:00
|
|
|
|
2006-02-23 17:10:28 +00:00
|
|
|
build() {
|
2008-06-21 13:45:28 +02:00
|
|
|
export MOZ_CO_PROJECT=browser
|
|
|
|
export BUILD_OFFICIAL=1
|
|
|
|
export MOZILLA_OFFICIAL=1
|
|
|
|
export MOZILLA_FIVE_HOME=/usr/lib/firefox
|
|
|
|
|
2011-06-22 19:51:26 +02:00
|
|
|
cd mozilla-release
|
2013-06-25 18:18:06 +02:00
|
|
|
|
2013-12-10 18:07:37 +01:00
|
|
|
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
|
2013-01-08 19:29:19 +01:00
|
|
|
mkdir $SRC/mozilla-release/js/src/.deps
|
|
|
|
|
2013-12-10 18:07:37 +01:00
|
|
|
./configure
|
2008-06-21 13:45:28 +02:00
|
|
|
make
|
|
|
|
install -d \
|
2013-12-10 18:07:37 +01:00
|
|
|
$PKG$MOZILLA_FIVE_HOME \
|
|
|
|
$PKG/usr/bin \
|
|
|
|
$PKG/usr/share/idl/firefox \
|
|
|
|
$PKG/usr/include/firefox
|
2008-06-21 13:45:28 +02:00
|
|
|
|
|
|
|
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/
|
2011-03-22 01:19:59 +01:00
|
|
|
|
|
|
|
install -d $PKG/etc/ld.so.conf.d
|
|
|
|
echo "/usr/lib/$name" > $PKG/etc/ld.so.conf.d/$name.conf
|
2013-05-05 03:21:54 +02:00
|
|
|
|
|
|
|
# cleanup
|
2013-09-17 19:09:44 +02:00
|
|
|
find $PKG -type f -empty -delete
|
2013-12-10 18:07:37 +01:00
|
|
|
|
2013-06-25 18:18:06 +02:00
|
|
|
# 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
|
2006-02-23 17:10:28 +00:00
|
|
|
}
|