Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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:= libiconv-tiny
  5. PKG_VERSION:= 0.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 7211794e2fa1df4123c5cc9f9226a5bb
  8. PKG_DESCR:= iconv stub and replacement
  9. PKG_SECTION:= libs
  10. PKG_URL:= http://www.openwrt.org/
  11. PKG_SITES:= http://www.openadk.org/distfiles/
  12. PKG_OPTS:= dev devonly
  13. include $(TOPDIR)/mk/host.mk
  14. include $(TOPDIR)/mk/package.mk
  15. $(eval $(call HOST_template,LIBICONV_TINY,libiconv-tiny,$(PKG_VERSION)-${PKG_RELEASE}))
  16. $(eval $(call PKG_template,LIBICONV_TINY,libiconv-tiny,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  17. HOST_STYLE:= manual
  18. CONFIG_STYLE:= manual
  19. libiconv-tiny-hostinstall:
  20. $(CP) $(WRKBUILD)/libiconv.a $(STAGING_HOST_DIR)/usr/lib
  21. $(CP) $(WRKBUILD)/include/* $(STAGING_HOST_DIR)/usr/include
  22. $(CP) $(WRKBUILD)/charmaps $(STAGING_HOST_DIR)/usr/include
  23. $(INSTALL_DIR) $(STAGING_HOST_DIR)/usr/share/aclocal
  24. $(CP) $(WRKBUILD)/m4/iconv.m4 \
  25. $(STAGING_HOST_DIR)/usr/share/aclocal
  26. include ${TOPDIR}/mk/host-bottom.mk
  27. include ${TOPDIR}/mk/pkg-bottom.mk