19 lines
563 B
Python
19 lines
563 B
Python
version = "1.0.16"
|
|
revision = 1
|
|
description = "Free Implementation of the Unicode Bidirectional Algorithm"
|
|
license = "LGPL-2.1-or-later"
|
|
url = "https://github.com/fribidi/fribidi"
|
|
source = tarball(
|
|
url=f"https://github.com/fribidi/fribidi/releases/download/v{version}/fribidi-{version}.tar.xz",
|
|
sha256="1b1cde5b235d40479e91be2f0e88a309e3214c8ab470ec8a2744d82a5a9ea05c",
|
|
)
|
|
host_deps = ["binutils", "gcc", "pkgconf"]
|
|
deps = [profile["libc"]]
|
|
|
|
configure, build, install = meson(
|
|
configure_args=[
|
|
"-Dtests=false",
|
|
"-Ddocs=false",
|
|
],
|
|
)
|