wok view claws-mail/receipt @ rev 22639

dd_rescue: update $TARBALL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 13 21:10:17 2020 +0100 (2020-01-13)
parents 75ca9eeaad71
children 8131df4d4b73
line source
1 # SliTaz package receipt.
3 PACKAGE="claws-mail"
4 VERSION="3.17.4"
5 CATEGORY="network"
6 TAGS="email client"
7 SHORT_DESC="The user-firendly, lightweight and fast email client."
8 MAINTAINER="erjo@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://www.claws-mail.org/index.php"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="https://www.claws-mail.org/releases/$TARBALL"
15 DEPENDS="dbus dbus-glib enchant expat gcc-lib-base gpgme gtk+
16 libcurl libdb libetpan libgcrypt libgnutls libical libsasl libtasn1
17 startup-notification xorg-libICE xorg-libSM xorg-libX11
18 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdamage
19 xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama
20 xorg-libXrandr xorg-libXrender"
21 BUILD_DEPENDS="acl-dev attr-dev curl-dev cyrus-sasl-dev db-dev dbus-dev
22 enchant expat-dev ghostscript-dev glib-dev gnutls-dev gpgme-dev
23 gtk+-dev lcms-dev libarchive-dev libassuan-dev libetpan-dev
24 libgnome-keyring-dev libgpg-error-dev libical-dev libidn-dev
25 liblzma-dev libwebkit-dev libxslt-dev perl pkg-config poppler-dev
26 pygtk-dev python-dev util-linux-uuid-dev xcb-util-dev xorg-dev
27 xorg-libXcomposite-dev xorg-libXcursor-dev xorg-libXdamage-dev
28 xorg-libXinerama-dev xorg-libXrandr-dev xorg-libXt-dev ytnef-dev"
30 # Rules to configure and make the package.
31 compile_rules()
32 {
33 ./configure \
34 WEBKIT_CFLAGS="-I/usr/include/webkitgtk-1.0" \
35 WEBKIT_LIBS="/usr/lib/libwebkitgtk-1.0.so" \
36 --disable-ldap \
37 --disable-jpilot \
38 $CONFIGURE_ARGS &&
39 make &&
40 make install
41 }
43 # Rules to gen a SliTaz package suitable for Tazpkg.
44 genpkg_rules()
45 {
46 mkdir -p $fs/usr/share
47 mkdir -p $fs/usr/lib/$PACKAGE/plugins
49 cp -a $install/usr/bin $fs/usr
50 cp -a $install/usr/share/icons $fs/usr/share
51 }
53 # Post installation custom.
54 post_install()
55 {
56 [ -x "$1/usr/bin/gtk-update-icon-cache" ] &&
57 chroot "$1/" gtk-update-icon-cache -f -t /usr/share/icons/hicolor
58 }