12345678910111213141516171819202122232425262728 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include $(TOPDIR)/rules.mk
- PKG_NAME:= coreutils
- PKG_VERSION:= 8.5
- PKG_RELEASE:= 1
- PKG_MD5SUM:= c1ffe586d001e87d66cd80c4536ee823
- PKG_DESCR:= basic file, shell and text manipulation utilities
- PKG_SECTION:= base
- PKG_URL:= http://www.gnu.org/software/coreutils/
- PKG_SITES:= http://ftp.gnu.org/gnu/coreutils/
- PKG_DESCR_TSORT:= topological sort utility
- PKG_SECTION_TSORT:= misc
- include $(TOPDIR)/mk/package.mk
- #$(eval $(call PKG_template,COREUTILS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- $(eval $(call PKG_template,TSORT,tsort,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR_TSORT},${PKG_SECTION_TSORT}))
- post-install:
- $(INSTALL_DIR) $(IDIR_TSORT)/usr/bin
- $(INSTALL_BIN) $(WRKINST)/usr/bin/tsort \
- $(IDIR_TSORT)/usr/bin
- include ${TOPDIR}/mk/pkg-bottom.mk
|