wok view sylpheed-full/receipt @ rev 15002

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 21:12:16 2013 +0000 (2013-08-10)
parents b5dbd2f2ae50
children d3eb5f4b53ea
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/v3.1/$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 }