Makefile 997 B

123456789101112131415161718192021222324252627282930
  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:= 9.0
  6. PKG_RELEASE:= 2
  7. PKG_HASH:= ce30acdf4a41bc5bb30dd955e9eaa75fa216b4e3deb08889ed32433c7b3b97ce
  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. CONFIGURE_ARGS+= --disable-rpath
  18. coreutils-install:
  19. $(INSTALL_DIR) $(IDIR_COREUTILS)/usr/bin
  20. $(CP) $(WRKINST)/usr/bin/* \
  21. $(IDIR_COREUTILS)/usr/bin
  22. include ${ADK_TOPDIR}/mk/host-bottom.mk
  23. include ${ADK_TOPDIR}/mk/pkg-bottom.mk