You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.5 KiB

  1. #
  2. # Copyright (C) 2007-2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=ssmtp
  9. PKG_VERSION:=2.64
  10. PKG_RELEASE:=5
  11. PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
  12. PKG_LICENSE:=GPL-2.0+
  13. PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.bz2
  14. PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/s/ssmtp
  15. PKG_HASH:=22c37dc90c871e8e052b2cab0ad219d010fa938608cd66b21c8f3c759046fa36
  16. include $(INCLUDE_DIR)/package.mk
  17. TARGET_CFLAGS += $(TARGET_CPPFLAGS)
  18. define Package/ssmtp
  19. SECTION:=mail
  20. CATEGORY:=Mail
  21. DEPENDS:=+libopenssl
  22. TITLE:=A minimal and secure mail sender with ssl support
  23. URL:=http://packages.debian.org/ssmtp
  24. endef
  25. define Package/ssmtp/description
  26. A secure, effective and simple way of getting mail off a system to your mail hub.
  27. Mail is simply forwarded to the configured mailhost, no daemons running in the background.
  28. Extremely easy configuration.
  29. endef
  30. define Package/ssmtp/conffiles
  31. /etc/ssmtp/ssmtp.conf
  32. /etc/ssmtp/revaliases
  33. endef
  34. CONFIGURE_VARS += \
  35. LIBS="$(TARGET_LDFLAGS) -lcrypto -lssl"
  36. CONFIGURE_ARGS += \
  37. --enable-ssl
  38. define Package/ssmtp/install
  39. $(INSTALL_DIR) $(1)/etc/ssmtp
  40. $(INSTALL_CONF) $(PKG_BUILD_DIR)/ssmtp.conf $(1)/etc/ssmtp/
  41. $(INSTALL_DATA) $(PKG_BUILD_DIR)/revaliases $(1)/etc/ssmtp/
  42. $(INSTALL_DIR) $(1)/usr/sbin
  43. $(INSTALL_BIN) $(PKG_BUILD_DIR)/ssmtp $(1)/usr/sbin/
  44. ln -s /usr/sbin/ssmtp $(1)/usr/sbin/sendmail
  45. endef
  46. $(eval $(call BuildPackage,ssmtp))