28 lines
592 B
Plaintext
28 lines
592 B
Plaintext
# Description: An SMTP client suitable for use with mutt etc.
|
|
# URL: https://marlam.de/msmtp/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Optional: openssl gnutls libidn2
|
|
|
|
name=msmtp
|
|
version=1.8.25
|
|
release=1
|
|
source=(https://marlam.de/msmtp/releases/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
PKGMK_MSMTP="--with-tls=none"
|
|
prt-get isinst openssl && PKGMK_MSMTP="--with-tls=openssl"
|
|
prt-get isinst gnutls && PKGMK_MSMTP="--with-tls=gnutls"
|
|
|
|
./configure \
|
|
$PKGMK_MSMTP \
|
|
--prefix=/usr \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/info
|
|
}
|