This commit is contained in:
2026-06-02 21:38:47 +02:00
parent d3c949b8a2
commit f51dab51db
70 changed files with 1632 additions and 21 deletions
+21
View File
@@ -0,0 +1,21 @@
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",
],
)