wok view sylpheed/receipt @ rev 14310

Up: elementary (1.7.5)
author Dominique Corbex <domcox@slitaz.org>
date Sun Apr 07 10:22:40 2013 +0200 (2013-04-07)
parents af9a1b47948c
children 7896f0694ef6
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://sylpheed.sraoss.jp/en/"
10 WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v3.3/$TARBALL"
11 TAGS="mail internet"
13 DEPENDS="gtk+ libssl"
14 BUILD_DEPENDS="gtk+-dev openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --disable-gtkspell \
22 --disable-updatecheck \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share/applications
31 cp -a $stuff/sylpheed*.desktop $fs/usr/share/applications
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }