wok annotate firefox-official-fr/receipt @ rev 19104

firefox-official-*: provides browser-html5 (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 04 15:39:12 2016 +0200 (2016-05-04)
parents 1d298bb09cdd
children 1b27cc4b14b9
rev   line source
al@18570 1 # SliTaz package receipt.
al@18570 2
al@18570 3 PACKAGE="firefox-official-fr"
al@18570 4 lang="fr"
al@19100 5 VERSION="46.0.1"
al@18570 6 CATEGORY="network"
al@18570 7 SHORT_DESC="Official Firefox build by the Mozilla foundation (French language)"
al@18570 8 MAINTAINER="al.bobylev@gmail.com"
al@18570 9 LICENSE="MPL2"
al@18570 10 WEB_SITE="http://www.mozilla.org/firefox"
al@18570 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@18570 12 WGET_URL="http://ftp.mozilla.org/pub/firefox/releases/$VERSION/linux-i686/$lang/firefox-$VERSION.tar.bz2"
al@18570 13 TAGS="web-browser"
al@18570 14 PROVIDE="firefox-official"
al@18570 15 HOST_ARCH="i486"
pascal@19102 16 PROVIDE="browser-html5"
al@18570 17
al@19079 18 DEPENDS="alsa-lib cairo dbus-glib gtk+ gtk+3 xorg-libXt"
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
al@18570 26 mkdir -p \
al@18803 27 $install$fx \
al@18570 28 $install/usr/bin \
al@18570 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 }