Makefile 928 B

123456789101112131415161718192021222324252627
  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 $(TOPDIR)/rules.mk
  4. PKG_NAME:= coreutils
  5. PKG_VERSION:= 8.5
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= c1ffe586d001e87d66cd80c4536ee823
  8. PKG_DESCR:= basic file, shell and text manipulation utilities
  9. PKG_SECTION:= base
  10. PKG_URL:= http://www.gnu.org/software/coreutils/
  11. PKG_SITES:= http://ftp.gnu.org/gnu/coreutils/
  12. PKG_DESCR_TSORT:= topological sort utility
  13. include $(TOPDIR)/mk/package.mk
  14. #$(eval $(call PKG_template,COREUTILS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. $(eval $(call PKG_template,TSORT,tsort,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR_TSORT},${PKG_SECTION}))
  16. post-install:
  17. $(INSTALL_DIR) $(IDIR_TSORT)/usr/bin
  18. $(INSTALL_BIN) $(WRKINST)/usr/bin/tsort \
  19. $(IDIR_TSORT)/usr/bin
  20. include ${TOPDIR}/mk/pkg-bottom.mk