From: Fabrice Fontaine Date: Sat, 30 Jan 2021 13:42:44 +0000 (+0100) Subject: package/mutt: add gpgme optional dependency X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2312e99499af0e432dedd87b0edd8a137c6a7e73;p=buildroot.git package/mutt: add gpgme optional dependency gpgme is supported since 2005 and https://gitlab.com/muttmua/mutt/-/commit/4bb5db92a89158cc45c3480f2be62d0b435c9a4e Signed-off-by: Fabrice Fontaine Signed-off-by: Peter Korsgaard --- diff --git a/package/mutt/mutt.mk b/package/mutt/mutt.mk index c2188cebea..9557983a07 100644 --- a/package/mutt/mutt.mk +++ b/package/mutt/mutt.mk @@ -36,6 +36,15 @@ else MUTT_CONF_OPTS += --without-idn --without-idn2 endif +ifeq ($(BR2_PACKAGE_LIBGPGME),y) +MUTT_DEPENDENCIES += libgpgme +MUTT_CONF_OPTS += \ + --enable-gpgme \ + --with-gpgme-prefix=$(STAGING_DIR)/usr +else +MUTT_CONF_OPTS += --disable-gpgme +endif + ifeq ($(BR2_PACKAGE_MUTT_IMAP),y) MUTT_CONF_OPTS += --enable-imap else