wok view claws-mail/receipt @ rev 2445

nss_ldap: enable-rfc2307bis
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 13 12:11:02 2009 +0000 (2009-03-13)
parents 2e5e480ef593
children 22b7efb924bb
line source
1 # SliTaz package receipt.
3 PACKAGE="claws-mail"
4 VERSION="3.6.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"
9 BUILD_DEPENDS="libetpan-dev curl-dev gpgme-dev glib-dev libgpg-error-dev enchant"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.claws-mail.org/index.php"
12 WGET_URL="http://master.dl.sourceforge.net/sourceforge/sylpheed-claws/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --infodir=/usr/share/info \
20 --disable-ldap \
21 --disable-jpilot \
22 --disable-dillo-viewer-plugin \
23 --mandir=/usr/share/man $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib/$PACKAGE/plugins \
32 $fs/usr/share/locale \
33 $fs/usr/share/
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/share/applications $fs/usr/share
36 cp -a $_pkg/usr/share/icons $fs/usr/share
37 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
38 strip -s $fs/usr/bin/*
39 }