[packages] c++ fixes:
[openwrt/svn-archive/archive.git] / utils / procmail / Makefile
1 #
2 # Copyright (C) 2006 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 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/procmail
24 SECTION:=utils
25 CATEGORY:=Utilities
26 TITLE:=Mail processing tool
27 URL:=http://www.procmail.org
28 SUBMENU:=mail
29 endef
30
31 define Package/procmail/description
32 Procmail is able to process and classify incoming mail into
33 different mail boxes.
34 Very useful in conjunction with mutt.
35 endef
36
37 define Build/Compile
38 $(MAKE) -C $(PKG_BUILD_DIR)/src -f ../Makefile.openwrt \
39 $(TARGET_CONFIGURE_OPTS)
40 endef
41
42 define Package/procmail/install
43 $(INSTALL_DIR) $(1)/usr/bin
44 $(CP) $(PKG_BUILD_DIR)/src/procmail $(1)/usr/bin/
45 $(CP) $(PKG_BUILD_DIR)/src/formail $(1)/usr/bin/
46 endef
47
48 $(eval $(call BuildPackage,procmail))