You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
3.0 KiB

  1. #
  2. # Copyright (C) 2008-2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=coreutils
  9. PKG_VERSION:=8.16
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=@GNU/coreutils
  13. PKG_MD5SUM:=89b06f91634208dceba7b36ad1f9e8b9
  14. PKG_BUILD_DEPENDS:=libpthread
  15. PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
  16. PKG_BUILD_PARALLEL:=1
  17. include $(INCLUDE_DIR)/package.mk
  18. COREUTILS_APPLETS := \
  19. base64 basename cat chcon chgrp chmod chown chroot cksum comm cp csplit \
  20. cut date dd dir dircolors dirname du echo env expand expr factor \
  21. false fmt fold groups head hostid id install join kill link ln logname \
  22. ls md5sum mkdir mkfifo mknod mktemp mv nice nl nohup nproc od paste \
  23. pathchk pinky pr printenv printf ptx pwd readlink realpath rm rmdir \
  24. runcon seq sha1sum sha224sum sha256sum sha384sum sha512sum shred \
  25. shuf sleep sort split stat stdbuf stty sum sync tac tail tee test \
  26. timeout touch tr true truncate tsort tty uname unexpand uniq unlink \
  27. uptime users vdir wc who whoami yes
  28. DEPENDS_sort = +libpthread
  29. DEPENDS_timeout = +librt
  30. DEPENDS_expr = +libgmp
  31. DEPENDS_factor = +libgmp
  32. define Package/coreutils/Default
  33. SECTION:=utils
  34. CATEGORY:=Utilities
  35. TITLE:=The GNU core utilities
  36. URL:=http://www.gnu.org/software/coreutils/
  37. endef
  38. define Package/coreutils
  39. $(call Package/coreutils/Default)
  40. TITLE:=The GNU core utilities
  41. MENU:=1
  42. endef
  43. define Package/coreutils/description
  44. Full versions of standard GNU utilities. Normally, you would not use this
  45. package, since the functionality in BusyBox is more than sufficient and
  46. smaller.
  47. endef
  48. define GenPlugin
  49. define Package/$(1)
  50. $(call Package/coreutils/Default)
  51. DEPENDS:=coreutils $(DEPENDS_$(2))
  52. TITLE:=Utility $(2) from the GNU core utilities
  53. endef
  54. define Package/$(1)/description
  55. Full version of standard GNU $(2) utility. Normally, you would not use this
  56. package, since the functionality in BusyBox is more than sufficient.
  57. endef
  58. endef
  59. $(foreach a,$(COREUTILS_APPLETS),$(eval $(call GenPlugin,coreutils-$(a),$(a))))
  60. CONFIGURE_VARS += \
  61. gl_cv_func_mbrtowc_incomplete_state=yes \
  62. gl_cv_func_mbrtowc_retval=yes \
  63. gl_cv_func_wcrtomb_retval=yes
  64. ifneq ($(CONFIG_USE_UCLIBC),)
  65. CONFIGURE_VARS += \
  66. ac_cv_type_pthread_spinlock_t=$(if $(filter 0.9.30% 0.9.2% 0.9.31%,$(call qstrip,$(CONFIG_UCLIBC_VERSION))),no,yes)
  67. endif
  68. CONFIGURE_ARGS += \
  69. --disable-xattr \
  70. --enable-install-program=su
  71. define Build/Compile
  72. $(MAKE) -C $(PKG_BUILD_DIR) \
  73. DESTDIR="$(PKG_INSTALL_DIR)" \
  74. SHELL="/bin/bash" \
  75. all install install-root
  76. endef
  77. define Package/coreutils/install
  78. true
  79. endef
  80. define BuildPlugin
  81. define Package/$(1)/install
  82. $(INSTALL_DIR) $$(1)/usr/bin
  83. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(2) $$(1)/usr/bin/
  84. endef
  85. $$(eval $$(call BuildPackage,$(1)))
  86. endef
  87. $(eval $(call BuildPackage,coreutils))
  88. $(foreach a,$(COREUTILS_APPLETS),$(eval $(call BuildPlugin,coreutils-$(a),$(a))))