wok view libetpan/receipt @ rev 22922

updated harfbuzz packages (2.3.1 -> 2.6.4)
author Hans-G?nter Theisgen
date Wed Feb 26 07:17:21 2020 +0100 (2020-02-26)
parents 3132d67b7e38
children 392544512bc6
line source
1 # SliTaz package receipt.
3 PACKAGE="libetpan"
4 VERSION="1.8"
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 libsasl libgnutls
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 }