wok view firefox-official-pt-BR/receipt @ rev 22667

updated firefox-official packages (70.0 -> 72.0)
author Hans-G?nter Theisgen
date Fri Jan 17 10:31:16 2020 +0100 (2020-01-17)
parents f95c417fc3b6
children 8f0435312aca
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox-official-pt-BR"
4 lang="pt-BR"
5 VERSION="72.0"
6 CATEGORY="network"
7 TAGS="web-browser"
8 SHORT_DESC="Official Firefox build by the Mozilla foundation (Portuguese (Brazil) language)."
9 MAINTAINER="al.bobylev@gmail.com"
10 LICENSE="MPL2"
11 WEB_SITE="http://www.mozilla.org/firefox"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WGET_URL="http://ftp.mozilla.org/pub/firefox/releases/$VERSION/linux-i686/$lang/firefox-$VERSION.tar.bz2"
16 PROVIDE="firefox-official browser-html5"
17 DEPENDS="alsa-lib dbus-glib gtk+ gtk+3 libatomic xorg-libXt libwrap vlc"
18 HOST_ARCH="i486"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 # Installation path
24 fx='/opt/mozilla/firefox'
26 mkdir -p \
27 $install$fx \
28 $install/usr/bin \
29 $install/usr/share/applications \
30 $install/usr/share/icons/hicolor/128x128/apps
32 # Copy everything
33 cp -a $src/* $install$fx
35 # Executable
36 ln -s $fx/firefox $install/usr/bin/firefox-official
38 # Icons
39 ln -s $fx/browser/icons/mozicon128.png \
40 $install/usr/share/icons/hicolor/128x128/apps/firefox-official.png
41 for size in 16 32 48; do
42 icon_folder="$install/usr/share/icons/hicolor/${size}x$size/apps"
43 mkdir -p $icon_folder
44 ln -s $fx/browser/chrome/icons/default/default$size.png \
45 $icon_folder/firefox-official.png
46 done
48 # Allow user updates (save user's and our traffic)
49 chmod -R a+w $install$fx
51 # Desktop shortcut
52 cp $stuff/firefox-official.desktop $install/usr/share/applications
53 }
55 # Rules to gen a SliTaz package suitable for Tazpkg.
56 genpkg_rules()
57 {
58 cp -a $install/* $fs
59 ln -s firefox-official $fs/usr/bin/browser-html5
60 }