fix package submenu.
[openwrt/svn-archive/archive.git] / mail / mini_sendmail / Makefile
1 #
2 # Copyright (C) 2007-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:=mini-sendmail
12 PKG_VERSION:=1.3.6
13 PKG_RELEASE:=2
14
15 PKG_SOURCE:=mini_sendmail-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.acme.com/software/mini_sendmail/
17 PKG_MD5SUM:=fb1585d2ad81c519a26d83bfd783dee8
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/mini_sendmail-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/mini-sendmail
24 SECTION:=mail
25 CATEGORY:=Mail
26 TITLE:=A small sendmail-compatible mail forwarder
27 URL:=http://www.acme.com/software/mini_sendmail/
28 endef
29
30 define Package/mini-sendmail/description
31 mini_sendmail reads its standard input up to an end-of-file and sends a
32 copy of the message found there to all of the addresses listed.
33 The message is sent by connecting to a local SMTP server. This means
34 mini_sendmail can be used to send email from inside a chroot(2) area.
35 endef
36
37 MAKE_FLAGS += \
38 OFLAGS="$(TARGET_CFLAGS)"
39
40 define Package/mini-sendmail/install
41 $(INSTALL_DIR) $(1)/usr/sbin
42 $(INSTALL_BIN) $(PKG_BUILD_DIR)/mini_sendmail $(1)/usr/sbin/
43 ln -sf mini_sendmail $(1)/usr/sbin/sendmail
44 endef
45
46 $(eval $(call BuildPackage,mini-sendmail))