Makefile 1.0 KB

12345678910111213141516171819202122232425262728293031
  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:= coreutils
  5. PKG_VERSION:= 8.25
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 31e67c057a5b32a582f26408c789e11c2e8d676593324849dcf5779296cdce87
  8. PKG_DESCR:= file, shell and text utilities
  9. PKG_SECTION:= base/apps
  10. PKG_NEEDS:= threads
  11. PKG_URL:= http://www.gnu.org/software/coreutils/
  12. PKG_SITES:= http://ftp.gnu.org/gnu/coreutils/
  13. include $(ADK_TOPDIR)/mk/host.mk
  14. include $(ADK_TOPDIR)/mk/package.mk
  15. $(eval $(call HOST_template,COREUTILS,coreutils,$(PKG_VERSION)-${PKG_RELEASE}))
  16. $(eval $(call PKG_template,COREUTILS,coreutils,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. AUTOTOOL_STYLE:= autoreconf
  18. CONFIGURE_ARGS+= --disable-rpath
  19. coreutils-install:
  20. $(INSTALL_DIR) $(IDIR_COREUTILS)/usr/bin
  21. $(CP) $(WRKINST)/usr/bin/* \
  22. $(IDIR_COREUTILS)/usr/bin
  23. include ${ADK_TOPDIR}/mk/host-bottom.mk
  24. include ${ADK_TOPDIR}/mk/pkg-bottom.mk