14 lines
529 B
Python
14 lines
529 B
Python
version = "5.6.3"
|
|
revision = 1
|
|
description = "LZMA/XZ compression tools and library"
|
|
license = "0BSD AND GPL-2.0-or-later AND LGPL-2.1-or-later"
|
|
url = "https://tukaani.org/xz/"
|
|
source = tarball(
|
|
url=f"https://github.com/tukaani-project/xz/releases/download/v{version}/xz-{version}.tar.xz",
|
|
sha256="db0590629b6f0fa36e74aea5f9731dc6f8df068ce7b7bafa45301832a5eebc3a",
|
|
)
|
|
host_deps = ["autoconf", "automake", "binutils", "gcc"]
|
|
deps = [profile["libc"]]
|
|
|
|
configure, build, install = autotools(configure_args=["--disable-doc"])
|