Makefile 1.2 KB

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