wok view sylpheed/receipt @ rev 17869

Use VERSION variable
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 26 09:34:19 2015 +0100 (2015-03-26)
parents 35c68ef9e128
children 12f827acfc48
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/v${VERSION%.*}/$TARBALL"
12 TAGS="mail internet"
14 DEPENDS="gtk+ libssl libffi"
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/applications/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 }