wok view thunderbird-bin/receipt @ rev 23840

Up libsdl2-image (2.0.5), radare2 (4.4.0), screen (4.8.0), sleuthkit (4.9.0), thunderbird-bin (68.9.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 04 16:22:12 2020 +0000 (2020-06-04)
parents 504cf654caa2
children 922f061231c2
line source
1 # SlitTaz package receipt.
3 PACKAGE="thunderbird-bin"
4 VERSION="68.9.0"
5 CATEGORY="network"
6 SHORT_DESC="Mozilla's Thunderbird email application."
7 MAINTAINER="mojo@slitaz.org"
8 LICENSE="MPL"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 SOURCE="thunderbird"
11 WEB_SITE="http://www.mozilla.org/"
12 WGET_URL="https://ftp.mozilla.org/pub/thunderbird/releases/$VERSION/linux-i686/en-US/$TARBALL"
14 DEPENDS="alsa-lib dbus-glib gtk+ gtk+3 libatomic xorg-libXt"
15 HOST_ARCH="i486"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # Installation path
21 fx='/opt/mozilla/thunderbird-bin'
23 mkdir -p \
24 $install$fx \
25 $install/usr/bin \
26 $install/usr/share/applications \
27 $install/usr/share/pixmaps
29 # Copy everything
30 cp -a $src/* $install$fx
32 # Executable
33 ln -s $fx/thunderbird $install/usr/bin/thunderbird-bin
35 # Icon
36 cp -a $stuff/thunderbird-bin.png \
37 $install/usr/share/pixmaps
39 # Allow user updates
40 chmod -R a+w $install$fx
42 # Desktop shortcut
43 cp $stuff/thunderbird-bin.desktop \
44 $install/usr/share/applications
45 }
47 # Rules to gen a SliTaz package suitable for Tazpkg.
48 genpkg_rules()
49 {
50 cp -a $install/* $fs
51 }