wok view sylpheed-full/receipt @ rev 13814

Add fdupes
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 06 13:29:35 2013 +0100 (2013-01-06)
parents c463aca978c9
children 7896f0694ef6
line source
1 # SliTaz package receipt.
3 PACKAGE="sylpheed-full"
4 VERSION="3.3.0"
5 CATEGORY="network"
6 SHORT_DESC="Simple and full featured e-mail client (GPG, spell, ldap support)"
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="sylpheed"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://sylpheed.sraoss.jp/en/"
11 WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v3.1/$TARBALL"
12 TAGS="mail internet"
13 PROVIDE="sylpheed"
15 DEPENDS="gtk+ libssl gnupg gpgme libgpg-error gtkspell enchant libldap"
16 BUILD_DEPENDS="gtk+-dev openssl-dev libgpg-error-dev gtkspell-dev \
17 enchant-dev openldap-dev gpgme-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --enable-ldap \
24 --disable-updatecheck \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }