opt/msmtp/Pkgfile

28 lines
592 B
Plaintext
Raw Normal View History

2006-04-22 22:30:07 +02: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
# Optional: openssl gnutls libidn2
2006-04-22 22:30:07 +02:00
name=msmtp
2023-06-30 10:57:29 +02:00
version=1.8.24
2006-04-22 22:30:07 +02:00
release=1
source=(https://marlam.de/msmtp/releases/$name-$version.tar.xz)
2006-04-22 22:30:07 +02:00
build() {
2021-03-12 18:39:42 +01:00
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"
2021-03-12 18:39:42 +01:00
./configure \
$PKGMK_MSMTP \
2021-03-12 18:39:42 +01:00
--prefix=/usr \
--disable-nls
2021-03-12 18:39:42 +01:00
make
make DESTDIR=$PKG install
2021-03-12 18:39:42 +01:00
rm -r $PKG/usr/share/info
2006-04-22 22:30:07 +02:00
}