aboutsummaryrefslogtreecommitdiff
path: root/mail/mutt/Makefile
blob: f0d94e03ba75fc2d4ee6fa3410b8333e27186eb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#
# Copyright (C) 2006-2015 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=mutt
PKG_VERSION:=2.1.5
PKG_RELEASE:=2

PKG_SOURCE_URL:=https://bitbucket.org/mutt/mutt/downloads/ \
		http://ftp.mutt.org/pub/mutt/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_HASH:=92a309e47e363a97d62425bcb71adceae5ab5c4c413dbcac37fa98ed70c12be0

PKG_MAINTAINER:=Phil Eichinger <phil@zankapfel.net>
PKG_LICENSE:=GPL-2.0-or-later
PKG_LICENSE_FILES:=GPL
PKG_CPE_ID:=cpe:/a:mutt:mutt

PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
PKG_CONFIG_DEPENDS:= \
	CONFIG_MUTT_POP \
	CONFIG_MUTT_IMAP \
	CONFIG_MUTT_SMTP \
	CONFIG_MUTT_HCACHE \
	CONFIG_MUTT_SASL \
	CONFIG_MUTT_GNUTLS \
	CONFIG_MUTT_OPENSSL

include $(INCLUDE_DIR)/package.mk

define Package/mutt
  SECTION:=mail
  CATEGORY:=Mail
  DEPENDS:=+MUTT_HCACHE:libgdbm +MUTT_GNUTLS:libgnutls +MUTT_OPENSSL:libopenssl +libncursesw +MUTT_SASL:libsasl2 +terminfo +zlib
  TITLE:=Console mail client
  URL:=http://www.mutt.org/
  MENU:=1
endef

define Package/mutt/description
	Mutt is a small but very powerful text-based mail client for Unix
	operating systems.
endef

CONFIGURE_ARGS += \
	--includedir=$(PKG_BUILD_DIR)/. \
	--oldincludedir=$(PKG_BUILD_DIR)/. \
	$(if $(CONFIG_MUTT_POP),--enable-pop) \
	$(if $(CONFIG_MUTT_IMAP),--enable-imap) \
	$(if $(CONFIG_MUTT_SMTP),--enable-smtp) \
	$(if $(CONFIG_MUTT_HCACHE),--enable-hcache) \
	$(if $(CONFIG_MUTT_SASL),--with-sasl) \
	--with-mailpath=/var/mail \
	$(if $(CONFIG_MUTT_GNUTLS),--with-gnutls) \
	$(if $(CONFIG_MUTT_OPENSSL),--with-ssl) \
	--without-idn \
	--disable-doc

define Package/mutt/install
	$(INSTALL_DIR) $(1)/usr/bin
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mutt $(1)/usr/bin/
endef

define Package/mutt/config
  source "$(SOURCE)/Config.in"
endef

$(eval $(call BuildPackage,mutt))