Makefile 893 B

1234567891011121314151617181920212223242526272829
  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:= zlib-ng
  5. PKG_VERSION:= 2.1.6
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= a5d504c0d52e2e2721e7e7d86988dec2e290d723ced2307145dedd06aeb6fef2
  8. PKG_DESCR:= implementation of the deflate compression method
  9. PKG_SECTION:= libs/comp
  10. PKG_SITES:= https://github.com/zlib-ng/zlib-ng/archive/refs/tags/
  11. PKG_NEEDS:= c++
  12. PKG_OPTS:= dev
  13. DISTFILES:= $(PKG_VERSION).tar.gz
  14. include $(ADK_TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,ZLIB_NG,zlib-ng,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
  16. CONFIG_STYLE:= cmake
  17. zlib-ng-install:
  18. $(INSTALL_DIR) $(IDIR_ZLIB_NG)/usr/lib
  19. $(CP) $(WRKINST)/usr/lib/libz-ng*.so* \
  20. $(IDIR_ZLIB_NG)/usr/lib
  21. include $(ADK_TOPDIR)/mk/pkg-bottom.mk