wok view sylpheed/receipt @ rev 11992

bastet: new desktop icon
author Samuel Trassare <samuel_trassare@yahoo.com>
date Sat Mar 03 12:21:34 2012 -0800 (2012-03-03)
parents 46bdddb99587
children b5dbd2f2ae50
line source
1 # SliTaz package receipt.
3 PACKAGE="sylpheed"
4 VERSION="3.1.1"
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.1/$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 $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 }