wok view sylpheed-full/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents fcb1de9af8f7
children
line source
1 # SliTaz package receipt.
3 PACKAGE="sylpheed-full"
4 VERSION="3.7.0"
5 CATEGORY="network"
6 TAGS="mail internet"
7 SHORT_DESC="Simple and full featured e-mail client (GPG, spell, ldap support)."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://sylpheed.sraoss.jp/en/"
12 SOURCE="sylpheed"
13 TARBALL="$SOURCE-$VERSION.tar.bz2"
14 WGET_URL="https://dotsrc.dl.osdn.net/osdn/sylpheed/68999/$TARBALL"
16 PROVIDE="sylpheed"
17 DEPENDS="enchant gnupg gpgme gtk+ gtkspell libgpg-error libldap libssl"
18 BUILD_DEPENDS="enchant-dev gpgme-dev gtk+-dev gtkspell-dev libgpg-error-dev \
19 openldap-dev openssl-dev"
21 # What is the latest version available today?
22 current_version()
23 {
24 wget -O - https://sylpheed.sraoss.jp/en/download.html 2>/dev/null | \
25 sed '/sylpheed-[0-9]/!d;/tar..z/!d;s|.*ylpheed-||;s|.tar.*||;q'
26 }
28 # Rules to configure and make the package.
29 compile_rules()
30 {
31 ./configure \
32 --enable-ldap \
33 --disable-updatecheck \
34 $CONFIGURE_ARGS &&
35 make &&
36 make install
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 mkdir -p $fs/usr/lib
44 cp -a $install/usr/bin $fs/usr
45 cp -a $install/usr/lib/*.so* $fs/usr/lib
46 }