57 lines
1.7 KiB
Makefile
57 lines
1.7 KiB
Makefile
|
#
|
||
|
# Copyright (C) 2007-2009 OpenWrt.org
|
||
|
#
|
||
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
|
||
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=nullmailer
|
||
|
PKG_VERSION:=1.05
|
||
|
PKG_RELEASE:=1
|
||
|
|
||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||
|
PKG_SOURCE_URL:=http://untroubled.org/nullmailer/
|
||
|
PKG_MD5SUM:=35124cc05f893efba1310e2ec7c876ff
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
TARGET_CFLAGS += $(TARGET_CPPFLAGS)
|
||
|
|
||
|
define Package/nullmailer
|
||
|
SECTION:=mail
|
||
|
CATEGORY:=Mail
|
||
|
TITLE:=A minimal MTA for hosts which relay to a fixed set of smart relays
|
||
|
URL:=http://untroubled.org/nullmailer/
|
||
|
endef
|
||
|
|
||
|
define Package/nullmailer/description
|
||
|
This is nullmailer, a sendmail/qmail/etc replacement MTA for hosts
|
||
|
which relay to a fixed set of smart relays. It is designed to be
|
||
|
simple to configure, secure, and easily extendable.
|
||
|
endef
|
||
|
|
||
|
CONFIGURE_ARGS += \
|
||
|
--prefix=/usr \
|
||
|
--sysconfdir=/etc \
|
||
|
--libexecdir=/usr/lib
|
||
|
|
||
|
define Package/nullmailer/install
|
||
|
$(INSTALL_DIR) $(1)/etc/nullmailer
|
||
|
echo "# List of smart relays" > $(1)/etc/nullmailer/remotes
|
||
|
$(INSTALL_DIR) $(1)/usr/bin
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/mailq $(1)/usr/bin/
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/nullmailer-inject $(1)/usr/bin/
|
||
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/nullmailer-queue $(1)/usr/sbin/
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/nullmailer-send $(1)/usr/sbin/
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/sendmail $(1)/usr/sbin/
|
||
|
$(INSTALL_DIR) $(1)/usr/lib/nullmailer
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/protocols/qmqp $(1)/usr/lib/nullmailer
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/protocols/smtp $(1)/usr/lib/nullmailer
|
||
|
ln -sf ../sbin/sendmail $(1)/usr/lib
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,nullmailer))
|