22 lines
636 B
Python
22 lines
636 B
Python
version = "2.14.2"
|
|
revision = 1
|
|
description = "XML parsing and toolkit library (libxml2)"
|
|
license = "MIT"
|
|
url = "https://gitlab.gnome.org/GNOME/libxml2"
|
|
_series = ".".join(version.split(".")[:2])
|
|
source = tarball(
|
|
url=f"https://download.gnome.org/sources/libxml2/{_series}/libxml2-{version}.tar.xz",
|
|
sha256="353f3c83535d4224a4e5f1e88c90b5d4563ea8fec11f6407df640fd28fc8b8c6",
|
|
)
|
|
host_deps = ["binutils", "gcc", "pkgconf"]
|
|
deps = [profile["libc"], "zlib", "xz"]
|
|
|
|
configure, build, install = autotools(
|
|
configure_args=[
|
|
"--without-python",
|
|
"--with-zlib",
|
|
"--with-lzma",
|
|
"--without-icu",
|
|
],
|
|
)
|