Makefile 1008 B

123456789101112131415161718192021222324252627282930313233
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= stunnel
  5. PKG_VERSION:= 5.36
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= eb8952fcfdfcdf5056a1f1a78e1ec5014b819c5f5f7599b924dc4490ffe4b5ea
  8. PKG_DESCR:= encryption wrapper
  9. PKG_SECTION:= net/security
  10. PKG_DEPENDS:= libopenssl
  11. PKG_BUILDDEP:= openssl
  12. PKG_URL:= https://www.stunnel.org
  13. PKG_SITES:= https://www.stunnel.org/downloads/
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  15. include $(ADK_TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,STUNNEL,stunnel,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. AUTOTOOL_STYLE:= autoreconf
  18. CONFIGURE_ARGS+= --with-ssl=${STAGING_TARGET_DIR}/usr \
  19. --disable-systemd \
  20. --disable-libwrap
  21. stunnel-install:
  22. $(INSTALL_DIR) $(IDIR_STUNNEL)/usr/bin
  23. $(INSTALL_BIN) $(WRKINST)/usr/bin/stunnel \
  24. $(IDIR_STUNNEL)/usr/bin
  25. include ${ADK_TOPDIR}/mk/pkg-bottom.mk