You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
2.3 KiB

  1. #
  2. # Copyright (C) 2006-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=mutt
  9. PKG_VERSION:=2.1.3
  10. PKG_RELEASE:=$(AUTORELEASE)
  11. PKG_SOURCE_URL:=https://bitbucket.org/mutt/mutt/downloads/ \
  12. http://ftp.mutt.org/pub/mutt/
  13. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  14. PKG_HASH:=ef759cc94b921b099a3ee88085d384fd3564c97f511e907bc83cf9812dd5e47c
  15. PKG_MAINTAINER:=Phil Eichinger <phil@zankapfel.net>
  16. PKG_LICENSE:=GPL-2.0-or-later
  17. PKG_LICENSE_FILES:=GPL
  18. PKG_CPE_ID:=cpe:/a:mutt:mutt
  19. PKG_FIXUP:=autoreconf
  20. PKG_INSTALL:=1
  21. PKG_BUILD_PARALLEL:=1
  22. include $(INCLUDE_DIR)/package.mk
  23. define Package/mutt
  24. SECTION:=mail
  25. CATEGORY:=Mail
  26. DEPENDS:=+MUTT_GNUTLS:libgnutls +MUTT_OPENSSL:libopenssl +libncursesw +MUTT_SASL:libsasl2 +terminfo +zlib
  27. TITLE:=Console mail client
  28. URL:=http://www.mutt.org/
  29. endef
  30. define Package/mutt/description
  31. Mutt is a small but very powerful text-based mail client for Unix
  32. operating systems.
  33. endef
  34. CONFIGURE_ARGS += \
  35. --includedir=$(PKG_BUILD_DIR)/. \
  36. --oldincludedir=$(PKG_BUILD_DIR)/. \
  37. $(if $(CONFIG_MUTT_POP),--enable-pop) \
  38. $(if $(CONFIG_MUTT_IMAP),--enable-imap) \
  39. $(if $(CONFIG_MUTT_SMTP),--enable-smtp) \
  40. $(if $(CONFIG_MUTT_SASL),--with-sasl) \
  41. --with-mailpath=/var/mail \
  42. $(if $(CONFIG_MUTT_GNUTLS),--with-gnutls) \
  43. $(if $(CONFIG_MUTT_OPENSSL),--with-ssl) \
  44. --without-idn \
  45. --disable-doc
  46. define Package/mutt/install
  47. $(INSTALL_DIR) $(1)/usr/bin
  48. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mutt $(1)/usr/bin/
  49. endef
  50. define Package/mutt/config
  51. menu "Select mutt build options"
  52. config MUTT_POP
  53. bool "POP support"
  54. default y
  55. help
  56. Enables POP support in mutt.
  57. config MUTT_IMAP
  58. bool "IMAP support"
  59. default y
  60. help
  61. Enables IMAP support in mutt
  62. config MUTT_SMTP
  63. bool "SMTP support"
  64. default n
  65. help
  66. Enables SMTP support in mutt.
  67. config MUTT_SASL
  68. bool "SASL support"
  69. default n
  70. help
  71. Enables SASL support in mutt (libsasl2).
  72. config MUTT_GNUTLS
  73. bool "GnuTLS support"
  74. default n
  75. help
  76. Enables GnuTLS support in mutt (libgnutls).
  77. config MUTT_OPENSSL
  78. bool "OpenSSL support"
  79. default y
  80. help
  81. Enables OpenSSL support in mutt (libopenssl).
  82. endmenu
  83. endef
  84. $(eval $(call BuildPackage,mutt))