wok view sylpheed-full/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents f9f95fd159eb
children 934055de50e2
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 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure \
25 --enable-ldap \
26 --disable-updatecheck \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }