Makefile 887 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 $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= enchant
  5. PKG_VERSION:= 1.6.0
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 2fac9e7be7e9424b2c5570d8affe568db39f7572c10ed48d4e13cddf03f7097f
  8. PKG_DESCR:= spelling library
  9. PKG_SECTION:= libs/misc
  10. PKG_SITES:= http://www.abisource.com/downloads/enchant/1.6.0/
  11. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. include $(ADK_TOPDIR)/mk/package.mk
  13. $(eval $(call PKG_template,ENCHANT,enchant,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
  14. enchant-install:
  15. $(INSTALL_DIR) $(IDIR_ENCHANT)/usr/lib/enchant
  16. $(CP) $(WRKINST)/usr/lib/libenchant.so* \
  17. $(IDIR_ENCHANT)/usr/lib
  18. $(CP) $(WRKINST)/usr/lib/enchant/*.so* \
  19. $(IDIR_ENCHANT)/usr/lib/enchant
  20. include $(ADK_TOPDIR)/mk/pkg-bottom.mk