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