0900fa5efb
- removed build option for OpenSSL entirely and always use GnuTLS - why OpenSSL is discouraged: https://marlam.de/msmtp/news/openssl-discouraged/ - update IDN to use libdn2, but it is not required anymore since GnuTLS has build-in support for IDN - disable msmtpd by default
27 lines
770 B
Bash
27 lines
770 B
Bash
# Template file for 'msmtp'
|
|
pkgname=msmtp
|
|
version=1.8.2
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="$(vopt_with msmtpd)
|
|
$(vopt_with idn libidn)
|
|
$(vopt_with sasl libgsasl)
|
|
$(vopt_with gnome libsecret)"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="gnutls-devel
|
|
$(vopt_if idn libidn2-devel)
|
|
$(vopt_if sasl gsasl-devel)
|
|
$(vopt_if gnome libsecret-devel)"
|
|
short_desc="Mini SMTP client"
|
|
maintainer="Juan RP <xtraeme@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://marlam.de/msmtp/"
|
|
distfiles="https://marlam.de/msmtp/releases/msmtp-${version}.tar.xz"
|
|
checksum=d1185c1969ed00d0e2c57dbcd5eb09a9f82156042b21309d558f761978a58793
|
|
|
|
build_options="idn sasl gnome msmtpd"
|
|
|
|
post_install() {
|
|
vsconf doc/msmtprc-system.example
|
|
vsconf doc/msmtprc-user.example
|
|
}
|