wok view firefox-official/receipt @ rev 22060

created package get-uae
author Hans-G?nter Theisgen
date Thu Oct 24 16:03:15 2019 +0100 (2019-10-24)
parents 0d2e41537ea0
children 629175d3e623
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox-official"
4 VERSION="69.0"
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"
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 }