Makefile 943 B

1234567891011121314151617181920212223242526272829303132
  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 $(TOPDIR)/rules.mk
  4. PKG_NAME:= stunnel
  5. PKG_VERSION:= 5.02
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= bb48b1c18cfc0a42708ef996b1a26926
  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 $(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-libwrap
  20. stunnel-install:
  21. $(INSTALL_DIR) $(IDIR_STUNNEL)/usr/bin
  22. $(INSTALL_BIN) $(WRKINST)/usr/bin/stunnel \
  23. $(IDIR_STUNNEL)/usr/bin
  24. include ${TOPDIR}/mk/pkg-bottom.mk