d6548119c9
Also add hash file and set eprefix to / otherwise when busybox is around we've got duplicate tar applications (/bin/tar for busybox, /usr/bin/tar for full-blown) normally making busybox still win in directory search. [Thomas: slightly improve the comment that explains why we pass --exec-prefix.] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
35 lines
1.0 KiB
Makefile
35 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# tar
|
|
#
|
|
################################################################################
|
|
|
|
TAR_VERSION = 1.28
|
|
TAR_SOURCE = tar-$(TAR_VERSION).tar.xz
|
|
TAR_SITE = $(BR2_GNU_MIRROR)/tar
|
|
# busybox installs in /bin, so we need tar to install as well in /bin
|
|
# so that it overrides the Busybox symlinks.
|
|
TAR_CONF_OPTS = --exec-prefix=/
|
|
TAR_LICENSE = GPLv3+
|
|
TAR_LICENSE_FILES = COPYING
|
|
|
|
# Prefer full-blown tar over buybox's version
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
TAR_DEPENDENCIES += busybox
|
|
HOST_TAR_DEPENDENCIES =
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
|
|
# host-tar: use cpio.gz instead of tar.gz to prevent chicken-egg problem
|
|
# of needing tar to build tar.
|
|
HOST_TAR_SOURCE = tar-$(TAR_VERSION).cpio.gz
|
|
define HOST_TAR_EXTRACT_CMDS
|
|
mkdir -p $(@D)
|
|
cd $(@D) && \
|
|
$(call suitable-extractor,$(HOST_TAR_SOURCE)) $(DL_DIR)/$(HOST_TAR_SOURCE) | cpio -i --preserve-modification-time
|
|
mv $(@D)/tar-$(TAR_VERSION)/* $(@D)
|
|
rmdir $(@D)/tar-$(TAR_VERSION)
|
|
endef
|
|
$(eval $(host-autotools-package))
|