293efb7831
git-svn-id: svn://svn.openwrt.org/openwrt/packages@9304 3c298f89-4303-0410-b956-a3cf2f4a3e73
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=procmail
|
|
PKG_VERSION:=3.22
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=http://www.procmail.org/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_MD5SUM:=1678ea99b973eb77eda4ecf6acae53f1
|
|
PKG_CAT:=zcat
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/procmail
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Mail processing tool
|
|
URL:=http://www.procmail.org
|
|
endef
|
|
|
|
define Package/procmail/description
|
|
Procmail is able to process and classify incoming mail into
|
|
different mail boxes.
|
|
Very useful in conjunction with mutt.
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/src -f ../Makefile.openwrt \
|
|
$(TARGET_CONFIGURE_OPTS)
|
|
endef
|
|
|
|
define Package/procmail/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_BUILD_DIR)/src/procmail $(1)/usr/bin/
|
|
$(CP) $(PKG_BUILD_DIR)/src/formail $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,procmail))
|