2006-08-06 10:06:28 +00:00
|
|
|
#
|
2010-12-24 12:01:56 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-08-06 10:06:28 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=mutt
|
2010-12-24 12:01:56 +00:00
|
|
|
PKG_VERSION:=1.5.21
|
2008-06-22 19:28:33 +00:00
|
|
|
PKG_RELEASE:=1
|
2006-08-06 10:06:28 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_URL:=@SF/mutt
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2010-12-24 12:01:56 +00:00
|
|
|
PKG_MD5SUM:=a29db8f1d51e2f10c070bf88e8a553fd
|
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
2006-08-06 10:06:28 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/mutt
|
2008-05-03 02:42:43 +00:00
|
|
|
SECTION:=mail
|
|
|
|
CATEGORY:=Mail
|
2006-08-06 10:06:28 +00:00
|
|
|
DEPENDS:=+libopenssl +libncurses
|
2006-10-30 13:51:50 +00:00
|
|
|
TITLE:=Console mail client
|
2007-01-08 11:19:08 +00:00
|
|
|
URL:=http://www.mutt.org/
|
2006-08-06 10:06:28 +00:00
|
|
|
endef
|
|
|
|
|
2009-05-26 14:46:20 +00:00
|
|
|
define Package/mutt/description
|
|
|
|
Mutt is a small but very powerful text-based mail client for Unix
|
|
|
|
operating systems.
|
|
|
|
endef
|
|
|
|
|
2007-06-30 12:01:18 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--includedir=$(PKG_BUILD_DIR)/. \
|
|
|
|
--oldincludedir=$(PKG_BUILD_DIR)/. \
|
|
|
|
--enable-pop \
|
|
|
|
--enable-imap \
|
2010-12-24 12:01:56 +00:00
|
|
|
--with-ssl \
|
|
|
|
--without-idn
|
2006-10-30 13:51:50 +00:00
|
|
|
|
2006-08-06 10:06:28 +00:00
|
|
|
define Package/mutt/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2010-12-24 12:01:56 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mutt $(1)/usr/bin/
|
2006-08-06 10:06:28 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,mutt))
|