Put libXmuu into its own package.
[openwrt/svn-archive/archive.git] / mail / procmail / Makefile
1 #
2 # Copyright (C) 2006-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=procmail
12 PKG_VERSION:=3.22
13 PKG_RELEASE:=1
14
15 PKG_SOURCE_URL:=http://www.procmail.org/
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_MD5SUM:=1678ea99b973eb77eda4ecf6acae53f1
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/procmail
22 SECTION:=mail
23 CATEGORY:=Mail
24 TITLE:=Mail processing tool
25 URL:=http://www.procmail.org
26 endef
27
28 define Package/procmail/description
29 Procmail is able to process and classify incoming mail into
30 different mail boxes.
31 Very useful in conjunction with mutt.
32 endef
33
34 define Build/Compile
35 $(MAKE) -C $(PKG_BUILD_DIR)/src -f ../Makefile.openwrt \
36 $(TARGET_CONFIGURE_OPTS)
37 endef
38
39 define Package/procmail/install
40 $(INSTALL_DIR) $(1)/usr/bin
41 $(CP) $(PKG_BUILD_DIR)/src/procmail $(1)/usr/bin/
42 $(CP) $(PKG_BUILD_DIR)/src/formail $(1)/usr/bin/
43 endef
44
45 $(eval $(call BuildPackage,procmail))