wok view libetpan/receipt @ rev 23543

gnumeric: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 06 16:30:06 2020 +0000 (2020-04-06)
parents 97413705f68c
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="libetpan"
4 VERSION="1.9.4"
5 CATEGORY="misc"
6 SHORT_DESC="Mail library."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://www.etpan.org/libetpan.html"
11 TARBALL="$VERSION.tar.gz"
12 WGET_URL="https://github.com/dinhviethoa/libetpan/archive/$TARBALL"
14 DEPENDS="expat gcc-lib-base gnutls libcurl libdb libgnutls libsasl
15 openssl zlib"
16 BUILD_DEPENDS="autoconf automake expat-dev gnutls-dev libgnutls libtool"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh \
22 --with-openssl=no \
23 --with-gnutls=yes \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }