Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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.24
  6. PKG_RELEASE:= 2
  7. PKG_HASH:= a2d75286a4b9ef3a13039c2da3868a61be4ee9f17d8ae380a35a97e506972170
  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. PKG_BB:= 1
  14. include $(ADK_TOPDIR)/mk/host.mk
  15. include $(ADK_TOPDIR)/mk/package.mk
  16. $(eval $(call HOST_template,COREUTILS,coreutils,$(PKG_VERSION)-${PKG_RELEASE}))
  17. $(eval $(call PKG_template,COREUTILS,coreutils,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. AUTOTOOL_STYLE:= autoreconf
  19. CONFIGURE_ARGS+= --disable-rpath
  20. coreutils-install:
  21. $(INSTALL_DIR) $(IDIR_COREUTILS)/usr/bin
  22. $(CP) $(WRKINST)/usr/bin/* \
  23. $(IDIR_COREUTILS)/usr/bin
  24. $(INSTALL_DIR) $(IDIR_COREUTILS)/usr/libexec
  25. $(CP) $(WRKINST)/usr/libexec/* \
  26. $(IDIR_COREUTILS)/usr/sbin
  27. include ${ADK_TOPDIR}/mk/host-bottom.mk
  28. include ${ADK_TOPDIR}/mk/pkg-bottom.mk