2006-04-22 20:30:07 +00:00
|
|
|
# Description: An SMTP client suitable for use with mutt etc.
|
2021-03-12 18:39:42 +01:00
|
|
|
# URL: https://marlam.de/msmtp/
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2021-10-27 10:12:23 +02:00
|
|
|
# Optional: openssl gnutls libidn2
|
2006-04-22 20:30:07 +00:00
|
|
|
|
|
|
|
name=msmtp
|
2024-05-02 11:34:57 +02:00
|
|
|
version=1.8.26
|
2006-04-22 20:30:07 +00:00
|
|
|
release=1
|
2019-01-31 09:50:51 +01:00
|
|
|
source=(https://marlam.de/msmtp/releases/$name-$version.tar.xz)
|
2006-04-22 20:30:07 +00:00
|
|
|
|
|
|
|
build() {
|
2021-03-12 18:39:42 +01:00
|
|
|
cd $name-$version
|
2021-10-27 10:12:23 +02:00
|
|
|
|
|
|
|
PKGMK_MSMTP="--with-tls=none"
|
|
|
|
prt-get isinst openssl && PKGMK_MSMTP="--with-tls=openssl"
|
|
|
|
prt-get isinst gnutls && PKGMK_MSMTP="--with-tls=gnutls"
|
|
|
|
|
2021-03-12 18:39:42 +01:00
|
|
|
./configure \
|
2021-10-27 10:12:23 +02:00
|
|
|
$PKGMK_MSMTP \
|
2021-03-12 18:39:42 +01:00
|
|
|
--prefix=/usr \
|
|
|
|
--disable-nls
|
2021-10-27 10:12:23 +02:00
|
|
|
|
2021-03-12 18:39:42 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2021-10-27 10:12:23 +02:00
|
|
|
|
2021-03-12 18:39:42 +01:00
|
|
|
rm -r $PKG/usr/share/info
|
2006-04-22 20:30:07 +00:00
|
|
|
}
|