wok annotate firefox-official-ru/receipt @ rev 21754

Up firefox-official (67.0.3), tinyproxy (1.10.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 19 17:26:14 2019 +0200 (2019-06-19)
parents fdb9ab1b060b
children 0d2e41537ea0
rev   line source
al@18570 1 # SliTaz package receipt.
al@18570 2
al@18570 3 PACKAGE="firefox-official-ru"
al@18570 4 lang="ru"
pascal@21754 5 VERSION="67.0.3"
al@18570 6 CATEGORY="network"
Hans-G?nter@21135 7 TAGS="web-browser"
Hans-G?nter@21135 8 SHORT_DESC="Official Firefox build by the Mozilla foundation (Russian language)."
al@18570 9 MAINTAINER="al.bobylev@gmail.com"
al@18570 10 LICENSE="MPL2"
al@18570 11 WEB_SITE="http://www.mozilla.org/firefox"
Hans-G?nter@21135 12
al@18570 13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@18570 14 WGET_URL="http://ftp.mozilla.org/pub/firefox/releases/$VERSION/linux-i686/$lang/firefox-$VERSION.tar.bz2"
Hans-G?nter@21135 15
al@19503 16 PROVIDE="firefox-official browser-html5"
Hans-G?nter@21135 17 DEPENDS="alsa-lib dbus-glib gtk+ gtk+3 libatomic xorg-libXt"
al@18570 18 HOST_ARCH="i486"
al@18570 19
al@18570 20 # Rules to configure and make the package.
al@18570 21 compile_rules()
al@18570 22 {
al@18803 23 # Installation path
al@18803 24 fx='/opt/mozilla/firefox'
al@18803 25
Hans-G?nter@21135 26 mkdir -p \
Hans-G?nter@21135 27 $install$fx \
Hans-G?nter@21135 28 $install/usr/bin \
Hans-G?nter@21135 29 $install/usr/share/applications \
al@18570 30 $install/usr/share/icons/hicolor/128x128/apps
al@18570 31
al@18803 32 # Copy everything
al@18803 33 cp -a $src/* $install$fx
al@18570 34
al@18803 35 # Executable
al@18803 36 ln -s $fx/firefox $install/usr/bin/firefox-official
al@18570 37
al@18570 38 # Icons
al@18803 39 ln -s $fx/browser/icons/mozicon128.png \
al@18570 40 $install/usr/share/icons/hicolor/128x128/apps/firefox-official.png
al@18570 41 for size in 16 32 48; do
al@18570 42 icon_folder="$install/usr/share/icons/hicolor/${size}x$size/apps"
al@18570 43 mkdir -p $icon_folder
al@18803 44 ln -s $fx/browser/chrome/icons/default/default$size.png \
al@18570 45 $icon_folder/firefox-official.png
al@18570 46 done
al@18570 47
al@18803 48 # Allow user updates (save user's and our traffic)
al@18803 49 chmod -R a+w $install$fx
al@18570 50
al@18803 51 # Desktop shortcut
al@18570 52 cp $stuff/firefox-official.desktop $install/usr/share/applications
al@18570 53 }
al@18570 54
al@18570 55 # Rules to gen a SliTaz package suitable for Tazpkg.
al@18570 56 genpkg_rules()
al@18570 57 {
al@18570 58 cp -a $install/* $fs
pascal@19104 59 ln -s firefox-official $fs/usr/bin/browser-html5
al@18570 60 }