From: Jo-Philipp Wich Date: Fri, 6 Aug 2010 21:29:23 +0000 (+0000) Subject: support unpacking of .tar.xz archives, no prereq on xzcat for now X-Git-Tag: reboot~19214 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=fa802af399db4f4827559fc07fc00b39083c8f17 support unpacking of .tar.xz archives, no prereq on xzcat for now SVN-Revision: 22517 --- diff --git a/include/unpack.mk b/include/unpack.mk index 2cd17817e6..0151675777 100644 --- a/include/unpack.mk +++ b/include/unpack.mk @@ -32,7 +32,11 @@ ifeq ($(strip $(UNPACK_CMD)),) EXT:=$(call ext,$(PKG_SOURCE:.$(EXT)=)) DECOMPRESS_CMD:=bzcat $(DL_DIR)/$(PKG_SOURCE) | endif - ifeq ($(filter tgz tbz tbz2,$(EXT1)),$(EXT1)) + ifeq ($(filter xz txz,$(EXT)),$(EXT)) + EXT:=$(call ext,$(PKG_SOURCE:.$(EXT)=)) + DECOMPRESS_CMD:=xzcat $(DL_DIR)/$(PKG_SOURCE) | + endif + ifeq ($(filter tgz tbz tbz2 txz,$(EXT1)),$(EXT1)) EXT:=tar endif DECOMPRESS_CMD ?= cat $(DL_DIR)/$(PKG_SOURCE) |