| 1 | # Description: The Mozilla Firefox browser |
| 2 | # URL: http://www.mozilla.com/firefox/ |
| 3 | # Maintainer: Fredrik Rinnestam, fredrik at crux dot nu |
| 4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu |
| 5 | # Depends on: nss, libidl, gtk, python, alsa-lib, xorg-libxt, yasm, mesa3d, gst-plugins-base |
| 6 | |
| 7 | name=firefox |
| 8 | version=40.0 |
| 9 | release=1 |
| 10 | source=(http://ftp.mozilla.org/pub/firefox/releases/$version/source/firefox-$version.source.tar.bz2 |
| 11 | firefox-install-dir.patch 0001-Fix-build-with-USE_SKIA_GPU.patch firefox.desktop) |
| 12 | |
| 13 | build() { |
| 14 | cd mozilla-release |
| 15 | |
| 16 | patch -p1 -i $SRC/firefox-install-dir.patch |
| 17 | patch -p1 -i $SRC/0001-Fix-build-with-USE_SKIA_GPU.patch |
| 18 | |
| 19 | cat <<- EOF > .mozconfig |
| 20 | mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-shared |
| 21 | mk_add_options MOZ_MAKE_FLAGS="$MAKEFLAGS -s" |
| 22 | ac_add_options --prefix=/usr |
| 23 | ac_add_options --with-system-jpeg |
| 24 | ac_add_options --with-system-zlib |
| 25 | ac_add_options --with-system-mng |
| 26 | ac_add_options --with-system-png |
| 27 | ac_add_options --with-system-nspr |
| 28 | ac_add_options --with-system-nss |
| 29 | ac_add_options --enable-system-ffi |
| 30 | ac_add_options --enable-system-pixman |
| 31 | ac_add_options --enable-system-sqlite |
| 32 | ac_add_options --enable-system-cairo |
| 33 | ac_add_options --with-pthreads |
| 34 | ac_add_options --enable-optimize="$CFLAGS" |
| 35 | ac_add_options --enable-official-branding |
| 36 | ac_add_options --with-distribution-id=nu.crux |
| 37 | ac_add_options --enable-extensions=default,-gnomevfs |
| 38 | ac_add_options --enable-shared |
| 39 | ac_add_options --enable-svg |
| 40 | ac_add_options --enable-canvas |
| 41 | ac_add_options --enable-crypto |
| 42 | ac_add_options --enable-single-profile |
| 43 | ac_add_options --enable-places |
| 44 | ac_add_options --enable-storage |
| 45 | ac_add_options --enable-places_bookmarks |
| 46 | ac_add_options --enable-image-encoder=all |
| 47 | ac_add_options --enable-xft |
| 48 | ac_add_options --enable-gstreamer=1.0 |
| 49 | ac_add_options --enable-pic |
| 50 | ac_add_options --disable-static |
| 51 | ac_add_options --disable-tests |
| 52 | ac_add_options --disable-mochitest |
| 53 | ac_add_options --disable-dbus |
| 54 | ac_add_options --disable-debug |
| 55 | ac_add_options --disable-installer |
| 56 | ac_add_options --disable-updater |
| 57 | ac_add_options --disable-xprint |
| 58 | ac_add_options --disable-profilesharing |
| 59 | ac_add_options --disable-gnomevfs |
| 60 | ac_add_options --disable-gnomeui |
| 61 | ac_add_options --disable-mailnews |
| 62 | ac_add_options --disable-crashreporter |
| 63 | ac_add_options --disable-necko-wifi |
| 64 | ac_add_options --disable-libnotify |
| 65 | ac_add_options --disable-pulseaudio |
| 66 | EOF |
| 67 | |
| 68 | sed "s|\['-march=armv7-a', '-mthumb', '-mfloat-abi=softfp', '-mfpu=neon'\]|\[\]|g" -i media/libvpx/moz.build |
| 69 | make -f client.mk build |
| 70 | make -f client.mk DESTDIR=$PKG install |
| 71 | |
| 72 | mkdir -p $PKG/usr/share/pixmaps |
| 73 | ln -s /usr/lib/firefox/browser/chrome/icons/default/default48.png $PKG/usr/share/pixmaps/firefox_default48.png |
| 74 | install -D -m 0644 $SRC/firefox.desktop $PKG/usr/share/applications/firefox.desktop |
| 75 | } |