updatedd: hotplug scripts should not be executable
[openwrt/svn-archive/archive.git] / net / mini_sendmail / Makefile
1 #
2 # Copyright (C) 2007 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:=net
25 CATEGORY:=Network
26 TITLE:=A small sendmail-compatible mail forwarder
27 DESCRIPTION:=\
28 mini_sendmail reads its standard input up to an end-of-file and sends a \\\
29 copy of the message found there to all of the addresses listed.\\\
30 The message is sent by connecting to a local SMTP server. This means \\\
31 mini_sendmail can be used to send email from inside a chroot(2) area.
32 URL:=http://www.acme.com/software/mini_sendmail/
33 endef
34
35 MAKE_FLAGS += \
36 OFLAGS="$(TARGET_CFLAGS)"
37
38 define Package/mini-sendmail/install
39 $(INSTALL_DIR) $(1)/usr/sbin
40 $(INSTALL_BIN) $(PKG_BUILD_DIR)/mini_sendmail $(1)/usr/sbin/
41 ln -sf mini_sendmail $(1)/usr/sbin/sendmail
42 endef
43
44 $(eval $(call BuildPackage,mini-sendmail))