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", ], )