Makefile 836 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 $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= fribidi
  5. PKG_VERSION:= 1.0.11
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 30f93e9c63ee627d1a2cedcf59ac34d45bf30240982f99e44c6e015466b4e73d
  8. PKG_DESCR:= unicode bidirectional algorithm
  9. PKG_SECTION:= libs/misc
  10. PKG_URL:= http://www.fribidi.org/
  11. PKG_SITES:= https://github.com/fribidi/fribidi/releases/download/v1.0.11/
  12. PKG_OPTS:= dev
  13. include $(ADK_TOPDIR)/mk/package.mk
  14. $(eval $(call PKG_template,FRIBIDI,fribidi,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  15. fribidi-install:
  16. $(INSTALL_DIR) $(IDIR_FRIBIDI)/usr/lib
  17. $(CP) $(WRKINST)/usr/lib/libfribidi*.so* \
  18. $(IDIR_FRIBIDI)/usr/lib
  19. include ${ADK_TOPDIR}/mk/pkg-bottom.mk