packages/mail/mutt/Makefile
swalker 7e6c6eed6e [packages] mutt: update to 1.5.21
* explicitly disable IDN
 * use PKG_INSTALL
 * refresh patches


git-svn-id: svn://svn.openwrt.org/openwrt/packages@24815 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-12-24 12:01:56 +00:00

49 lines
998 B
Makefile

#
# Copyright (C) 2006-2010 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.5.21
PKG_RELEASE:=1
PKG_SOURCE_URL:=@SF/mutt
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_MD5SUM:=a29db8f1d51e2f10c070bf88e8a553fd
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/mutt
SECTION:=mail
CATEGORY:=Mail
DEPENDS:=+libopenssl +libncurses
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))