Makefile 834 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.9
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= c5e47ea9026fb60da1944da9888b4e0a18854a0e2410bbfe7ad90a054d36e0c7
  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.9/
  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