Fix/clean several hundred package makefiles
[openwrt/svn-archive/archive.git] / net / mini_sendmail / 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:=mini-sendmail
12 PKG_VERSION:=1.3.5
13 PKG_RELEASE:=1
14 PKG_MD5SUM:=fff344184e98cff0ea4d817da9d29383
15
16 PKG_SOURCE_URL:=http://www.acme.com/software/mini_sendmail/
17 PKG_SOURCE:=mini_sendmail-$(PKG_VERSION).tar.gz
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/mini_sendmail-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/mini-sendmail
25 SECTION:=net
26 CATEGORY:=Network
27 TITLE:=A small sendmail-compatible mail forwarder
28 DESCRIPTION:=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 define Build/Compile
36 $(MAKE) -C $(PKG_BUILD_DIR) \
37 $(TARGET_CONFIGURE_OPTS) \
38 OFLAGS="$(TARGET_CFLAGS)" \
39 all
40 endef
41
42 define Package/mini-sendmail/install
43 install -d -m0755 $(1)/usr/sbin
44 install -m0755 $(PKG_BUILD_DIR)/mini_sendmail $(1)/usr/sbin/
45 ln -sf mini_sendmail $(1)/usr/sbin/sendmail
46 endef
47
48 $(eval $(call BuildPackage,mini-sendmail))