2017-03-23 13:28:19 +01:00
|
|
|
|
# Description: Mozilla.org'dan bağımsız web tarayıcısı
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: http://www.mozilla.com/firefox/
|
2017-05-16 01:59:01 +02:00
|
|
|
|
# Packager: alihan-ozturk28@hotmail.com
|
|
|
|
|
# Depends on: autoconf2 libbluray pulseaudio gconf yasm sqlite libvpx libevent nss alsa-lib gtk2 gtk3 xorg-app zip unzip gstreamer1 gstreamer1-plugins-base gstreamer1-plugins-good gstreamer1-plugins-libav
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
|
|
|
|
name=firefox
|
2017-05-16 05:21:14 +02:00
|
|
|
|
version=53.0
|
|
|
|
|
release=1
|
|
|
|
|
source=(https://ftp.mozilla.org/pub/firefox/releases/$version/source/firefox-$version.source.tar.xz
|
|
|
|
|
firefox-install-dir.patch firefox.desktop)
|
|
|
|
|
|
2016-02-24 01:27:23 +01:00
|
|
|
|
build() {
|
2017-05-16 05:21:14 +02:00
|
|
|
|
cd firefox-$version
|
|
|
|
|
|
|
|
|
|
sed -i '/^ftfntfmt.h/ i freetype/ftfntfmt.h' config/system-headers
|
|
|
|
|
# stupid workaround
|
|
|
|
|
sed -i '2,7d' js/src/configure
|
|
|
|
|
patch -p1 -i $SRC/firefox-install-dir.patch
|
|
|
|
|
|
|
|
|
|
cat <<- EOF > .mozconfig
|
|
|
|
|
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-shared
|
|
|
|
|
mk_add_options MOZ_MAKE_FLAGS="-j1"
|
|
|
|
|
ac_add_options --prefix=/usr
|
|
|
|
|
ac_add_options --enable-default-toolkit=cairo-gtk3
|
|
|
|
|
ac_add_options --with-system-jpeg
|
|
|
|
|
ac_add_options --with-system-zlib
|
|
|
|
|
ac_add_options --with-system-png
|
|
|
|
|
ac_add_options --with-system-nspr
|
|
|
|
|
ac_add_options --with-system-nss
|
|
|
|
|
ac_add_options --with-system-cairo
|
|
|
|
|
ac_add_options --enable-system-ffi
|
|
|
|
|
ac_add_options --enable-system-pixman
|
|
|
|
|
ac_add_options --enable-system-sqlite
|
|
|
|
|
ac_add_options --enable-alsa
|
|
|
|
|
ac_add_options --with-pthreads
|
|
|
|
|
ac_add_options --enable-official-branding
|
|
|
|
|
ac_add_options --with-distribution-id=org.milislinux
|
|
|
|
|
ac_add_options --enable-extensions=default,-gnomevfs
|
|
|
|
|
ac_add_options --disable-tests
|
|
|
|
|
ac_add_options --disable-dbus
|
|
|
|
|
ac_add_options --disable-debug
|
|
|
|
|
ac_add_options --disable-updater
|
|
|
|
|
ac_add_options --disable-gnomeui
|
|
|
|
|
ac_add_options --disable-crashreporter
|
|
|
|
|
ac_add_options --disable-necko-wifi
|
|
|
|
|
ac_add_options --disable-pulseaudio
|
|
|
|
|
ac_add_options --disable-gconf
|
|
|
|
|
ac_add_options --disable-rust
|
2016-02-24 01:27:23 +01:00
|
|
|
|
EOF
|
|
|
|
|
|
2017-05-16 05:21:14 +02:00
|
|
|
|
SHELL=/bin/sh make -f client.mk build
|
|
|
|
|
SHELL=/bin/sh make -f client.mk DESTDIR=$PKG install
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-05-16 05:21:14 +02:00
|
|
|
|
mkdir -p $PKG/usr/share/pixmaps
|
|
|
|
|
ln -s /usr/lib/firefox/browser/chrome/icons/default/default48.png $PKG/usr/share/pixmaps/firefox_default48.png
|
|
|
|
|
install -D -m 0644 $SRC/firefox.desktop $PKG/usr/share/applications/firefox.desktop
|
|
|
|
|
# Remove crap
|
|
|
|
|
rm $PKG/usr/lib/firefox/browser/features/{firefox@getpocket.com.xpi,webcompat@mozilla.org.xpi}
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
|
|
|
|
}
|