wok view sylpheed/receipt @ rev 14521

gxine: fix gxine.desktop
author Richard Dunbar <mojo@slitaz.org>
date Fri May 17 00:56:38 2013 +0000 (2013-05-17)
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 }