wok-next view msmtp/receipt @ rev 21139

lftp: use openssl instead of gnutls
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 24 05:20:16 2019 +0200 (2019-01-24)
parents 67e8d6b33992
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="msmtp"
4 VERSION="1.6.8"
5 CATEGORY="network"
6 SHORT_DESC="An SMTP client who transmits a mail to an SMTP server"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://marlam.de/msmtp/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://marlam.de/msmtp/releases/$TARBALL"
14 BUILD_DEPENDS="openssl-dev gettext-dev"
16 compile_rules() {
17 ./configure \
18 --with-tls=openssl \
19 --without-libsecret \
20 --without-libgsasl \
21 --without-libidn \
22 $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 copy @std
29 DEPENDS="openssl"
30 }