Makefile 726 B

1234567891011121314151617181920212223242526272829303132333435
  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_CPE_ID:=cpe:/a:gnu:tar
  10. PKG_VERSION:=1.34
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=@GNU/tar
  13. PKG_HASH:=63bebd26879c5e1eea4352f0d03c991f966aeb3ddeb3c7445c902568d5411d28
  14. HOST_BUILD_PARALLEL:=1
  15. include $(INCLUDE_DIR)/host-build.mk
  16. HOSTCC := $(HOSTCC_NOCACHE)
  17. HOSTCXX := $(HOSTCXX_NOCACHE)
  18. HOST_CONFIGURE_ARGS += \
  19. --without-posix-acls \
  20. --without-selinux \
  21. --without-xattrs \
  22. --disable-acl \
  23. --disable-nls
  24. define Host/Uninstall
  25. -$(call Host/Compile/Default,uninstall)
  26. endef
  27. $(eval $(call HostBuild))