From: jow Date: Fri, 6 Aug 2010 21:29:23 +0000 (+0000) Subject: [include] support unpacking of .tar.xz archives, no prereq on xzcat for now X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=13321eba5370747d4d2afa7c3ac83e95fcb2c297 [include] support unpacking of .tar.xz archives, no prereq on xzcat for now git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22517 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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) |