wok view msmtp/receipt @ rev 23878

ipxe: remove mirror.switch.ch
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 03 08:45:11 2020 +0000 (2020-07-03)
parents bc3d22d15703
children ad8b9ff412d2
line source
1 # SliTaz package receipt.
3 PACKAGE="msmtp"
4 VERSION="1.8.7"
5 CATEGORY="network"
6 SHORT_DESC="An SMTP client that 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="${WEB_SITE}releases/$TARBALL"
14 DEPENDS="libssl"
15 BUILD_DEPENDS="openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --with-ssl=openssl \
22 --without-libgsasl \
23 --without-libidn \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }