forked from brl/citadel
31 lines
1013 B
BlitzBasic
31 lines
1013 B
BlitzBasic
SUMMARY = "msmtp is an SMTP client"
|
|
DESCRIPTION = "A sendmail replacement for use in MTAs like mutt"
|
|
HOMEPAGE = "http://msmtp.sourceforge.net/"
|
|
SECTION = "console/network"
|
|
|
|
LICENSE = "GPLv3"
|
|
DEPENDS = "zlib gnutls"
|
|
|
|
#COPYING or Licence
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
SRC_URI = "http://sourceforge.net/projects/msmtp/files/msmtp/${PV}/${BPN}-${PV}.tar.xz \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "82b0520b57db4b2cf05333d11fb5974d"
|
|
SRC_URI[sha256sum] = "da15db1f62bd0201fce5310adb89c86188be91cd745b7cb3b62b81a501e7fb5e"
|
|
|
|
inherit gettext autotools update-alternatives pkgconfig
|
|
|
|
EXTRA_OECONF += "--without-libsecret --without-libgsasl --without-libidn"
|
|
|
|
ALTERNATIVE_${PN} = "sendmail"
|
|
ALTERNATIVE_TARGET[sendmail] = "${bindir}/msmtp"
|
|
ALTERNATIVE_LINK_NAME[sendmail] = "${sbindir}/sendmail"
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
|
|
pkg_postinst_${PN}_linuxstdbase () {
|
|
# /usr/lib/sendmial is required by LSB core test
|
|
[ ! -L $D/usr/lib/sendmail ] && ln -sf ${sbindir}/sendmail $D/usr/lib/
|
|
}
|