2015-09-11 18:38:02 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=tar
|
2017-09-28 02:55:46 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:gnu:tar
|
2018-01-19 16:55:28 +00:00
|
|
|
PKG_VERSION:=1.30
|
2015-09-11 18:38:02 +00:00
|
|
|
|
2016-10-06 11:13:20 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2015-09-11 18:38:02 +00:00
|
|
|
PKG_SOURCE_URL:=@GNU/tar
|
2018-01-19 16:55:28 +00:00
|
|
|
PKG_HASH:=87592b86cb037c554375f5868bdd3cc57748aef38d6cb741c81065f0beac63b7
|
2015-09-11 18:38:02 +00:00
|
|
|
|
|
|
|
HOST_BUILD_PARALLEL := 1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
|
|
|
HOSTCC := $(HOSTCC_NOCACHE)
|
|
|
|
HOSTCXX := $(HOSTCXX_NOCACHE)
|
|
|
|
|
|
|
|
HOST_CONFIGURE_ARGS += \
|
|
|
|
--without-posix-acls \
|
|
|
|
--without-selinux \
|
|
|
|
--without-xattrs \
|
|
|
|
--disable-acl \
|
|
|
|
--disable-nls
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|