wok view msmtp/receipt @ rev 24165

updated opencv and opencv-dev (4.2.0 -> 4.5.5)
author Hans-G?nter Theisgen
date Tue Dec 28 08:42:55 2021 +0100 (2021-12-28)
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 }