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
+20
View File
@@ -0,0 +1,20 @@
version = "2.7.3"
revision = 1
description = "Stream-oriented XML parser library (Expat)"
license = "MIT"
url = "https://libexpat.github.io/"
_tag = "R_" + version.replace(".", "_")
source = tarball(
url=f"https://github.com/libexpat/libexpat/releases/download/{_tag}/expat-{version}.tar.xz",
sha256="71df8f40706a7bb0a80a5367079ea75d91da4f8c65c58ec59bcdfbf7decdab9f",
)
host_deps = ["binutils", "gcc", "pkgconf"]
deps = [profile["libc"]]
configure, build, install = autotools(
configure_args=[
"--without-docbook",
"--without-examples",
"--without-tests",
],
)