47 lines
1.2 KiB
Text
47 lines
1.2 KiB
Text
# Template file for 'msmtp'
|
|
pkgname=msmtp
|
|
version=1.4.32
|
|
revision=3
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config"
|
|
short_desc="A mini SMTP client"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://msmtp.sourceforge.net"
|
|
license="GPL-3"
|
|
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.bz2"
|
|
checksum=2bf0c5c7e78f9905f48de235a75111a1a88238793043bbeae00360b22f1a5f88
|
|
|
|
# Package build options
|
|
build_options="openssl gnutls idn sasl gnome"
|
|
build_options_default="openssl idn"
|
|
|
|
if [ "$build_option_openssl" ]; then
|
|
configure_args+=" --with-ssl=openssl"
|
|
makedepends+=" libressl-devel"
|
|
elif [ "$build_option_gnutls" ]; then
|
|
configure_args+=" --with-ssl=gnutls"
|
|
makedepends+=" gnutls-devel"
|
|
else
|
|
configure_args+=" --with-ssl=no"
|
|
fi
|
|
|
|
if [ "$build_option_idn" ]; then
|
|
configure_args+=" --with-libidn"
|
|
makedepends+=" libidn-devel"
|
|
else
|
|
configure_args+=" --without-libidn"
|
|
fi
|
|
|
|
if [ "$build_option_sasl" ]; then
|
|
configure_args+=" --with-libgsasl"
|
|
makedepends+=" gsasl-devel"
|
|
else
|
|
configure_args+=" --without-libgsasl"
|
|
fi
|
|
|
|
if [ "$build_option_gnome" ]; then
|
|
configure_args+=" --with-gnome-keyring"
|
|
makedepends+=" libgnome-keyring-devel"
|
|
else
|
|
configure_args+=" --without-gnome-keyring"
|
|
fi
|