wok-next view msmtp/receipt @ rev 21725

busybox: add overrides
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:18:16 2020 +0000 (2020-09-01)
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 }