wok view sylpheed-full/receipt @ rev 19294

sane-backends, scons, scrot, shell-fm, smake, soundtouch, wireless_tools: fix man or doc path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 06 16:30:34 2016 +0200 (2016-07-06)
parents 7896f0694ef6
children 12f827acfc48
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 LICENSE="GPL2"
9 SOURCE="sylpheed"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://sylpheed.sraoss.jp/en/"
12 WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v${VERSION%.*}/$TARBALL"
13 TAGS="mail internet"
14 PROVIDE="sylpheed"
16 DEPENDS="gtk+ libssl gnupg gpgme libgpg-error gtkspell enchant libldap"
17 BUILD_DEPENDS="gtk+-dev openssl-dev libgpg-error-dev gtkspell-dev \
18 enchant-dev openldap-dev gpgme-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --enable-ldap \
25 --disable-updatecheck \
26 $CONFIGURE_ARGS &&
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }