wok view firefox-official-fr/receipt @ rev 18921

slitaz-i18n: remove files common to glibc-base from locale-* packages
glibc-extra-samba: 100% common to glibc-base; to remove?
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Feb 24 22:42:08 2016 +0200 (2016-02-24)
parents 46cd05f762af
children 88c4b92b0e61
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox-official-fr"
4 lang="fr"
5 VERSION="44.0.2"
6 CATEGORY="network"
7 SHORT_DESC="Official Firefox build by the Mozilla foundation (French language)"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="MPL2"
10 WEB_SITE="http://www.mozilla.org/firefox"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://ftp.mozilla.org/pub/firefox/releases/$VERSION/linux-i686/$lang/firefox-$VERSION.tar.bz2"
13 TAGS="web-browser"
14 PROVIDE="firefox-official"
15 HOST_ARCH="i486"
17 DEPENDS="gtk+"
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 $install/usr/share/applications
52 }
54 # Rules to gen a SliTaz package suitable for Tazpkg.
55 genpkg_rules()
56 {
57 cp -a $install/* $fs
58 }