[Buildroot] [git commit] package/mutt: add gpgme optional dependency
From: Peter Korsgaard <peter@korsgaard.com>
Date: 2021-01-30 21:18:53
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Peter Korsgaard <peter@korsgaard.com>
Date: 2021-01-30 21:18:53
Subsystem:
the rest · Maintainer:
Linus Torvalds
commit: https://git.buildroot.net/buildroot/commit/?id=2312e99499af0e432dedd87b0edd8a137c6a7e73 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master gpgme is supported since 2005 and https://gitlab.com/muttmua/mutt/-/commit/4bb5db92a89158cc45c3480f2be62d0b435c9a4e Signed-off-by: Fabrice Fontaine <redacted> Signed-off-by: Peter Korsgaard <peter@korsgaard.com> --- package/mutt/mutt.mk | 9 +++++++++ 1 file changed, 9 insertions(+)
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