wok-stable view claws-mail/receipt @ rev 2489

c*: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 15 22:04:42 2009 +0000 (2009-03-15)
parents 22b7efb924bb
children 2407153fdf77
line source
1 # SliTaz package receipt.
3 PACKAGE="claws-mail"
4 VERSION="3.7.1"
5 CATEGORY="network"
6 SHORT_DESC="The user-firendly, lightweight and fast email client"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libetpan libdb cyrus-sasl curl gpgme enchant dbus dbus-glib expat \
9 gnutls gtk+ libgcrypt startup-notification xorg-libICE xorg-libSM \
10 xorg-libX11 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdmcp \
11 xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender"
12 BUILD_DEPENDS="libetpan-dev curl-dev gpgme-dev glib-dev libgpg-error-dev enchant"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WEB_SITE="http://www.claws-mail.org/index.php"
15 WGET_URL="http://master.dl.sourceforge.net/sourceforge/sylpheed-claws/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr \
22 --infodir=/usr/share/info \
23 --disable-ldap \
24 --disable-jpilot \
25 --disable-dillo-viewer-plugin \
26 --mandir=/usr/share/man $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib/$PACKAGE/plugins \
35 $fs/usr/share/locale \
36 $fs/usr/share/
37 cp -a $_pkg/usr/bin $fs/usr
38 cp -a $_pkg/usr/share/applications $fs/usr/share
39 cp -a $_pkg/usr/share/icons $fs/usr/share
40 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
41 strip -s $fs/usr/bin/*
42 }