Makefile 905 B

12345678910111213141516171819202122232425262728293031
  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:= polarssl
  5. PKG_VERSION:= 1.2.8
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 985151639b1ca037293f06da44fbc6bc
  8. PKG_DESCR:= embedded SSL/TLS library
  9. PKG_SECTION:= libs
  10. PKG_URL:= https://polarssl.org/
  11. PKG_SITES:= http://www.openadk.org/distfiles/
  12. PKG_LIBNAME:= libpolarssl
  13. PKG_OPTS:= dev
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}-gpl.tgz
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,LIBPOLARSSL,libpolarssl,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  17. CONFIG_STYLE:= manual
  18. ALL_TARGET:= no_test
  19. libpolarssl-install:
  20. $(INSTALL_DIR) $(IDIR_LIBPOLARSSL)/usr/lib
  21. $(CP) $(WRKINST)/usr/lib/libpolarssl.so* \
  22. $(IDIR_LIBPOLARSSL)/usr/lib
  23. include ${TOPDIR}/mk/pkg-bottom.mk