18 lines
514 B
Python
18 lines
514 B
Python
version = "5.6.3"
|
|
revision = 1
|
|
metadata = meta(
|
|
description = "XZ Utils — LZMA/XZ compression tools and library",
|
|
license = "0BSD AND GPL-2.0-or-later AND LGPL-2.1-or-later",
|
|
website = "https://tukaani.org/xz/",
|
|
)
|
|
source = tarball_source(
|
|
url = f"https://github.com/tukaani-project/xz/releases/download/v{version}/xz-{version}.tar.xz",
|
|
sha256 = "?",
|
|
strip_components = 1,
|
|
)
|
|
host_deps = ["binutils", "gcc"]
|
|
|
|
configure, build, install = autotools(configure_args = [
|
|
"--disable-doc",
|
|
])
|