Makefile 959 B

12345678910111213141516171819202122232425262728
  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. PKG_SECTION_TSORT:= misc
  14. include $(TOPDIR)/mk/package.mk
  15. #$(eval $(call PKG_template,COREUTILS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. $(eval $(call PKG_template,TSORT,tsort,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR_TSORT},${PKG_SECTION_TSORT}))
  17. post-install:
  18. $(INSTALL_DIR) $(IDIR_TSORT)/usr/bin
  19. $(INSTALL_BIN) $(WRKINST)/usr/bin/tsort \
  20. $(IDIR_TSORT)/usr/bin
  21. include ${TOPDIR}/mk/pkg-bottom.mk