wok-6.x annotate msmtp/receipt @ rev 22612
updated codeblocks again (10.05 -> 17.12)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jan 10 13:36:24 2020 +0100 (2020-01-10) |
parents | 2b9f96603415 |
children | 6eddddd08919 |
rev | line source |
---|---|
pankso@12192 | 1 # SliTaz package receipt. |
pankso@12192 | 2 |
pankso@12192 | 3 PACKAGE="msmtp" |
Hans-G?nter@21492 | 4 VERSION="1.8.4" |
pankso@12192 | 5 CATEGORY="network" |
Hans-G?nter@21492 | 6 SHORT_DESC="An SMTP client that transmits a mail to an SMTP server." |
pankso@12192 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@14999 | 8 LICENSE="GPL3" |
Hans-G?nter@21492 | 9 WEB_SITE="https://marlam.de/msmtp/" |
Hans-G?nter@21492 | 10 |
Hans-G?nter@21492 | 11 TARBALL="$PACKAGE-$VERSION.tar.xz" |
Hans-G?nter@21492 | 12 WGET_URL="${WEB_SITE}releases/$TARBALL" |
pankso@12192 | 13 |
pankso@12192 | 14 DEPENDS="libssl" |
pankso@12192 | 15 BUILD_DEPENDS="openssl-dev" |
pankso@12192 | 16 |
pankso@12192 | 17 # Rules to configure and make the package. |
pankso@12192 | 18 compile_rules() |
pankso@12192 | 19 { |
Hans-G?nter@21492 | 20 ./configure \ |
Hans-G?nter@21492 | 21 --with-ssl=openssl \ |
Hans-G?nter@21492 | 22 --without-libgsasl \ |
Hans-G?nter@21492 | 23 --without-libidn \ |
pankso@12192 | 24 $CONFIGURE_ARGS && |
Hans-G?nter@21492 | 25 make && |
Hans-G?nter@21492 | 26 make install |
pankso@12192 | 27 } |
pankso@12192 | 28 |
pankso@12192 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@12192 | 30 genpkg_rules() |
pankso@12192 | 31 { |
pankso@12192 | 32 mkdir -p $fs/usr |
pankso@12192 | 33 cp -a $install/usr/bin $fs/usr |
pankso@12192 | 34 } |