Makefile 844 B

123456789101112131415161718192021222324252627
  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:= libqb
  5. PKG_VERSION:= 0.16.0
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= 88a256ce5217efa420598ade393879ff
  8. PKG_DESCR:= high performance client server reusable features
  9. PKG_SECTION:= libs
  10. PKG_URL:= https://github.com/asalkeld/libqb/wiki#wiki-Releases
  11. PKG_SITES:= https://fedorahosted.org/releases/q/u/quarterback/
  12. PKG_OPTS:= dev
  13. PKG_LIBC_DEPENDS:= eglibc glibc musl
  14. include $(TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,LIBQB,libqb,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  16. libqb-install:
  17. $(INSTALL_DIR) $(IDIR_LIBQB)/usr/lib
  18. $(CP) $(WRKINST)/usr/lib/libqb*so* \
  19. $(IDIR_LIBQB)/usr/lib
  20. include ${TOPDIR}/mk/pkg-bottom.mk