wok view claws-mail/receipt @ rev 1388

Add: mtoos, ms-dos disk tools.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Sep 17 22:09:48 2008 +0200 (2008-09-17)
parents 7c2e75c7300a
children 03a799424aaa
line source
1 # SliTaz package receipt.
3 PACKAGE="claws-mail"
4 VERSION="3.5.0"
5 CATEGORY="networking"
6 SHORT_DESC="The user-firendly, lightweight and fast email client"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libetpan openssl libdb cyrus-sasl curl"
9 BUILD_DEPENDS="libetpan-dev openssl-dev curl-dev gpgme-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.claws-mail.org/index.php"
12 WGET_URL="http://garr.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 }