wok view thunderbird-bin/receipt @ rev 21490

trickle: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 01 18:05:32 2019 +0200 (2019-05-01)
parents
children da134f47b369
line source
1 # SlitTaz package receipt.
3 PACKAGE="thunderbird-bin"
4 VERSION="60.6.1"
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 }