# *.zst should DEPEND on zstd-native for unpacking
elif path.endswith('.zst'):
- d.appendVarFlag('do_unpack', 'depends', ' zstd-native:do_populate_sysroot')
+ d.appendVarFlag('do_unpack', 'depends', ' zstd-decompress-native:do_populate_sysroot')
# *.lz should DEPEND on lzip-native for unpacking
elif path.endswith('.lz'):
# *.xz should DEPEND on xz-native for unpacking
elif path.endswith('.xz') or path.endswith('.txz'):
- d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot')
+ d.appendVarFlag('do_unpack', 'depends', ' xz-decompress-native:do_populate_sysroot')
# .zip should DEPEND on unzip-native for unpacking
elif path.endswith('.zip') or path.endswith('.jar'):
# Some rpm files may be compressed internally using xz (for example, rpms from Fedora)
elif path.endswith('.rpm'):
- d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot')
+ d.appendVarFlag('do_unpack', 'depends', ' xz-decompress-native:do_populate_sysroot')
# *.deb should DEPEND on xz-native for unpacking
elif path.endswith('.deb'):
- d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot')
+ d.appendVarFlag('do_unpack', 'depends', ' xz-decompress-native:do_populate_sysroot')
# *.7z should DEPEND on 7zip-native for unpacking
elif path.endswith('.7z'):
DESCRIPTION = "XZ Utils is free general-purpose data compression software with a high compression ratio. XZ Utils were written for POSIX-like systems, but also work on some not-so-POSIX systems. XZ Utils are the successor to LZMA Utils."
SECTION = "base"
+PROVIDES += "xz-decompress"
+
# The source includes bits of 0BSD, GPL-2.0, GPL-3.0, LGPL-2.1-or-later, but the
# only file which is GPL-3.0 is an m4 macro which isn't shipped in any of our
# packages, and the LGPL bits are under lib/, which appears to be used for
HOMEPAGE = "http://www.zstd.net/"
SECTION = "console/utils"
+PROVIDES += "zstd-decompress"
+
LICENSE = "BSD-3-Clause | GPL-2.0-only"
LIC_FILES_CHKSUM = "file://LICENSE;md5=0822a32f7acdbe013606746641746ee8 \
file://COPYING;md5=39bba7d2cf0ba1036f2a6e2be52fe3f0 \