blob: 6d0d89e809d8960f365299e871c4f84b136441b7 (
plain)
1 # Description: An SMTP client suitable for use with mutt etc.
2 # URL: https://marlam.de/msmtp/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Optional: openssl gnutls libidn2
5
6 name=msmtp
7 version=1.8.20
8 release=1
9 source=(https://marlam.de/msmtp/releases/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 PKGMK_MSMTP="--with-tls=none"
15 prt-get isinst openssl && PKGMK_MSMTP="--with-tls=openssl"
16 prt-get isinst gnutls && PKGMK_MSMTP="--with-tls=gnutls"
17
18 ./configure \
19 $PKGMK_MSMTP \
20 --prefix=/usr \
21 --disable-nls
22
23 make
24 make DESTDIR=$PKG install
25
26 rm -r $PKG/usr/share/info
27 }
|