Makefile 632 B

123456789101112131415161718192021222324252627282930
  1. #
  2. # Copyright (C) 2015 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:=tar
  9. PKG_VERSION:=1.29
  10. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  11. PKG_SOURCE_URL:=@GNU/tar
  12. PKG_HASH:=236b11190c0a3a6885bdb8d61424f2b36a5872869aa3f7f695dea4b4843ae2f2
  13. HOST_BUILD_PARALLEL := 1
  14. include $(INCLUDE_DIR)/host-build.mk
  15. HOSTCC := $(HOSTCC_NOCACHE)
  16. HOSTCXX := $(HOSTCXX_NOCACHE)
  17. HOST_CONFIGURE_ARGS += \
  18. --without-posix-acls \
  19. --without-selinux \
  20. --without-xattrs \
  21. --disable-acl \
  22. --disable-nls
  23. $(eval $(call HostBuild))