| 12345678910111213141516171819202122232425262728293031 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include $(ADK_TOPDIR)/rules.mk
- PKG_NAME:= coreutils
- PKG_VERSION:= 8.25
- PKG_RELEASE:= 1
- PKG_HASH:= 31e67c057a5b32a582f26408c789e11c2e8d676593324849dcf5779296cdce87
- PKG_DESCR:= file, shell and text utilities
- PKG_SECTION:= base/apps
- PKG_NEEDS:= threads
- PKG_URL:= http://www.gnu.org/software/coreutils/
- PKG_SITES:= http://ftp.gnu.org/gnu/coreutils/
- include $(ADK_TOPDIR)/mk/host.mk
- include $(ADK_TOPDIR)/mk/package.mk
- $(eval $(call HOST_template,COREUTILS,coreutils,$(PKG_VERSION)-${PKG_RELEASE}))
- $(eval $(call PKG_template,COREUTILS,coreutils,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- AUTOTOOL_STYLE:= autoreconf
- CONFIGURE_ARGS+= --disable-rpath
- coreutils-install:
- $(INSTALL_DIR) $(IDIR_COREUTILS)/usr/bin
- $(CP) $(WRKINST)/usr/bin/* \
- $(IDIR_COREUTILS)/usr/bin
- include ${ADK_TOPDIR}/mk/host-bottom.mk
- include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|