mutt: update to 2.1.5
[feed/packages.git] / mail / mutt / Makefile
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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=mutt
11 PKG_VERSION:=2.1.5
12 PKG_RELEASE:=$(AUTORELEASE)
13
14 PKG_SOURCE_URL:=https://bitbucket.org/mutt/mutt/downloads/ \
15 http://ftp.mutt.org/pub/mutt/
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_HASH:=92a309e47e363a97d62425bcb71adceae5ab5c4c413dbcac37fa98ed70c12be0
18
19 PKG_MAINTAINER:=Phil Eichinger <phil@zankapfel.net>
20 PKG_LICENSE:=GPL-2.0-or-later
21 PKG_LICENSE_FILES:=GPL
22 PKG_CPE_ID:=cpe:/a:mutt:mutt
23
24 PKG_FIXUP:=autoreconf
25 PKG_INSTALL:=1
26 PKG_BUILD_PARALLEL:=1
27
28 include $(INCLUDE_DIR)/package.mk
29
30 define Package/mutt
31 SECTION:=mail
32 CATEGORY:=Mail
33 DEPENDS:=+MUTT_HCACHE:libgdbm +MUTT_GNUTLS:libgnutls +MUTT_OPENSSL:libopenssl +libncursesw +MUTT_SASL:libsasl2 +terminfo +zlib
34 TITLE:=Console mail client
35 URL:=http://www.mutt.org/
36 MENU:=1
37 endef
38
39 define Package/mutt/description
40 Mutt is a small but very powerful text-based mail client for Unix
41 operating systems.
42 endef
43
44 CONFIGURE_ARGS += \
45 --includedir=$(PKG_BUILD_DIR)/. \
46 --oldincludedir=$(PKG_BUILD_DIR)/. \
47 $(if $(CONFIG_MUTT_POP),--enable-pop) \
48 $(if $(CONFIG_MUTT_IMAP),--enable-imap) \
49 $(if $(CONFIG_MUTT_SMTP),--enable-smtp) \
50 $(if $(CONFIG_MUTT_HCACHE),--enable-hcache) \
51 $(if $(CONFIG_MUTT_SASL),--with-sasl) \
52 --with-mailpath=/var/mail \
53 $(if $(CONFIG_MUTT_GNUTLS),--with-gnutls) \
54 $(if $(CONFIG_MUTT_OPENSSL),--with-ssl) \
55 --without-idn \
56 --disable-doc
57
58 define Package/mutt/install
59 $(INSTALL_DIR) $(1)/usr/bin
60 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mutt $(1)/usr/bin/
61 endef
62
63 define Package/mutt/config
64 source "$(SOURCE)/Config.in"
65 endef
66
67 $(eval $(call BuildPackage,mutt))