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.

67 lines
1.7 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.5
  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:=92a309e47e363a97d62425bcb71adceae5ab5c4c413dbcac37fa98ed70c12be0
  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_HCACHE:libgdbm +MUTT_GNUTLS:libgnutls +MUTT_OPENSSL:libopenssl +libncursesw +MUTT_SASL:libsasl2 +terminfo +zlib
  27. TITLE:=Console mail client
  28. URL:=http://www.mutt.org/
  29. MENU:=1
  30. endef
  31. define Package/mutt/description
  32. Mutt is a small but very powerful text-based mail client for Unix
  33. operating systems.
  34. endef
  35. CONFIGURE_ARGS += \
  36. --includedir=$(PKG_BUILD_DIR)/. \
  37. --oldincludedir=$(PKG_BUILD_DIR)/. \
  38. $(if $(CONFIG_MUTT_POP),--enable-pop) \
  39. $(if $(CONFIG_MUTT_IMAP),--enable-imap) \
  40. $(if $(CONFIG_MUTT_SMTP),--enable-smtp) \
  41. $(if $(CONFIG_MUTT_HCACHE),--enable-hcache) \
  42. $(if $(CONFIG_MUTT_SASL),--with-sasl) \
  43. --with-mailpath=/var/mail \
  44. $(if $(CONFIG_MUTT_GNUTLS),--with-gnutls) \
  45. $(if $(CONFIG_MUTT_OPENSSL),--with-ssl) \
  46. --without-idn \
  47. --disable-doc
  48. define Package/mutt/install
  49. $(INSTALL_DIR) $(1)/usr/bin
  50. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mutt $(1)/usr/bin/
  51. endef
  52. define Package/mutt/config
  53. source "$(SOURCE)/Config.in"
  54. endef
  55. $(eval $(call BuildPackage,mutt))