wok view sylpheed/receipt @ rev 21995

updated sylpheed, sylpheed-dev and sylpheed-full again (3.5.1 -> 3.7.0)
author Hans-G?nter Theisgen
date Wed Oct 16 17:48:27 2019 +0100 (2019-10-16)
parents be3655da32a1
children fcb1de9af8f7
line source
1 # SliTaz package receipt.
3 PACKAGE="sylpheed"
4 VERSION="3.7.0"
5 CATEGORY="network"
6 TAGS="mail internet"
7 SHORT_DESC="Simple, lightweight but featureful, and easy-to-use e-mail client"
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://sylpheed.sraoss.jp/en/"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="https://osdn.net/dl/$PACKAGE/$TARBALL"
15 DEPENDS="gtk+ libffi libssl"
16 BUILD_DEPENDS="gtk+-dev openssl-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --disable-gtkspell \
23 --disable-updatecheck \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 mkdir -p $fs/usr/share/applications
35 cp -a $stuff/applications/sylpheed*.desktop $fs/usr/share/applications
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 }