16 lines
496 B
Python
16 lines
496 B
Python
version = "1.1.0"
|
|
revision = 1
|
|
description = "Generic-purpose lossless compression algorithm (Brotli)"
|
|
license = "MIT"
|
|
url = "https://github.com/google/brotli"
|
|
source = tarball(
|
|
url=f"https://github.com/google/brotli/archive/refs/tags/v{version}.tar.gz",
|
|
sha256="e720a6ca29428b803f4ad165371771f5398faba397edf6778837a18599ea13ff",
|
|
)
|
|
host_deps = ["binutils", "gcc", "pkgconf"]
|
|
deps = [profile["libc"]]
|
|
|
|
configure, build, install = cmake(
|
|
configure_args=["-DBROTLI_DISABLE_TESTS=ON"],
|
|
)
|