Update mutt to upstream release 1.7.2 Also introduce a patch for CVE-2014-9116, which addresses a DoS-attack. The patch is originally found at Debian's package of mutt 1.7.1 Signed-off-by: Paul Wassi <p.wassi@gmx.at>
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
#
|
|
# 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:=1.7.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=ftp://ftp.mutt.org/pub/mutt/ \
|
|
https://bitbucket.org/mutt/mutt/downloads/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_MD5SUM:=15425c4c9946d58c22ccb44901544e6d
|
|
|
|
PKG_LICENSE:=GPL-2.0+
|
|
PKG_LICENSE_FILES:=GPL
|
|
PKG_MAINTAINER:=Phil Eichinger <phil@zankapfel.net>
|
|
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/mutt
|
|
SECTION:=mail
|
|
CATEGORY:=Mail
|
|
DEPENDS:=+libopenssl +libncursesw +zlib
|
|
TITLE:=Console mail client
|
|
URL:=http://www.mutt.org/
|
|
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)/. \
|
|
--enable-pop \
|
|
--enable-imap \
|
|
--with-ssl \
|
|
--without-idn
|
|
|
|
define Package/mutt/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mutt $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,mutt))
|