wok view firefox-official/receipt @ rev 22669

Up firefox-official (72.0.1, CVE-2019-17026)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 17 11:02:35 2020 +0100 (2020-01-17)
parents 8fb63f185731
children 07fcb5769b7f
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox-official"
4 VERSION="72.0.1"
5 CATEGORY="network"
6 TAGS="web-browser"
7 SHORT_DESC="Official Firefox build by the Mozilla foundation (English language)."
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="MPL2"
10 WEB_SITE="http://www.mozilla.org/firefox"
12 TARBALL="firefox-$VERSION.tar.bz2"
13 WGET_URL="http://ftp.mozilla.org/pub/firefox/releases/$VERSION/linux-i686/en-US/$TARBALL"
15 PROVIDE="browser-html5"
16 DEPENDS="alsa-lib dbus-glib gtk+ gtk+3 libatomic xorg-libXt libwrap vlc"
17 HOST_ARCH="i486"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 # Installation path
23 fx='/opt/mozilla/firefox'
25 mkdir -p \
26 $install$fx \
27 $install/usr/bin \
28 $install/usr/share/applications \
29 $install/usr/share/icons/hicolor/128x128/apps
31 # Copy everything
32 cp -a $src/* $install$fx
34 # Executable
35 ln -s $fx/firefox $install/usr/bin/firefox-official
37 # Icons
38 ln -s $fx/browser/icons/mozicon128.png \
39 $install/usr/share/icons/hicolor/128x128/apps/firefox-official.png
40 for size in 16 32 48; do
41 icon_folder="$install/usr/share/icons/hicolor/${size}x$size/apps"
42 mkdir -p $icon_folder
43 ln -s $fx/browser/chrome/icons/default/default$size.png \
44 $icon_folder/firefox-official.png
45 done
47 # Allow user updates (save user's and our traffic)
48 chmod -R a+w $install$fx
50 # Desktop shortcut
51 cp $stuff/firefox-official.desktop \
52 $install/usr/share/applications
53 cp $stuff/firefox-official-private.desktop \
54 $install/usr/share/applications
55 cp $stuff/firefox-official-safe.desktop \
56 $install/usr/share/applications
57 }
59 # Rules to gen a SliTaz package suitable for Tazpkg.
60 genpkg_rules()
61 {
62 cp -a $install/* $fs
63 ln -s firefox-official $fs/usr/bin/browser-html5
64 }