wok-next view msmtp/receipt @ rev 20976
Follow recent changes in the Python renames
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Sep 25 17:35:51 2018 +0300 (2018-09-25) |
parents | e6615350078d |
children | d5aab818505e |
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="pankso@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"
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 }