Makefile 945 B

123456789101112131415161718192021222324252627282930
  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:= json-c
  5. PKG_VERSION:= 0.13
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 0316780be9ad16c42d7c26b015a784fd5df4b0909fef0aba51cfb13e492ac24d
  8. PKG_DESCR:= json library
  9. PKG_SECTION:= libs/data
  10. PKG_URL:= https://github.com/json-c/json-c/wiki
  11. PKG_SITES:= https://s3.amazonaws.com/json-c_releases/releases/
  12. PKG_OPTS:= dev
  13. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
  14. include $(ADK_TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,JSON_C,json-c,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
  16. CONFIGURE_ENV+= ac_cv_func_malloc_0_nonnull=yes \
  17. ac_cv_func_realloc_0_nonnull=yes
  18. json-c-install:
  19. $(INSTALL_DIR) $(IDIR_JSON_C)/usr/lib
  20. $(CP) $(WRKINST)/usr/lib/libjson*.so* \
  21. $(IDIR_JSON_C)/usr/lib
  22. include $(ADK_TOPDIR)/mk/pkg-bottom.mk