wok view sylpheed/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 5a5eac1f6a50
line source
1 # SliTaz package receipt.
3 PACKAGE="sylpheed"
4 VERSION="3.3.0"
5 CATEGORY="network"
6 SHORT_DESC="Simple, lightweight but featureful, and easy-to-use e-mail client"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://sylpheed.sraoss.jp/en/"
11 WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v3.3/$TARBALL"
12 TAGS="mail internet"
14 DEPENDS="gtk+ libssl"
15 BUILD_DEPENDS="gtk+-dev openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --disable-gtkspell \
23 --disable-updatecheck \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/usr/share/applications
32 cp -a $stuff/sylpheed*.desktop $fs/usr/share/applications
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }