Makefile 773 B

12345678910111213141516171819202122232425
  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:= libssh2
  5. PKG_VERSION:= 1.4.3
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 071004c60c5d6f90354ad1b701013a0b
  8. PKG_DESCR:= client-side C library implementing SSH2 protocol
  9. PKG_SECTION:= libs
  10. PKG_URL:= http://www.libssh2.org/
  11. PKG_SITES:= http://www.libssh2.org/download/
  12. PKG_OPTS:= dev
  13. include $(TOPDIR)/mk/package.mk
  14. $(eval $(call PKG_template,LIBSSH2,libssh2,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  15. libssh2-install:
  16. $(INSTALL_DIR) $(IDIR_LIBSSH2)/usr/lib
  17. $(CP) $(WRKINST)/usr/lib/libssh2*.so* \
  18. $(IDIR_LIBSSH2)/usr/lib
  19. include ${TOPDIR}/mk/pkg-bottom.mk