29 lines
717 B
Python
29 lines
717 B
Python
version = "1.56.3"
|
|
revision = 1
|
|
description = "Library for laying out and rendering internationalized text"
|
|
license = "LGPL-2.1-or-later"
|
|
url = "https://www.gtk.org/"
|
|
_series = ".".join(version.split(".")[:2])
|
|
source = tarball(
|
|
url=f"https://download.gnome.org/sources/pango/{_series}/pango-{version}.tar.xz",
|
|
sha256="2606252bc25cd8d24e1b7f7e92c3a272b37acd6734347b73b47a482834ba2491",
|
|
)
|
|
host_deps = ["binutils", "gcc", "pkgconf"]
|
|
deps = [
|
|
profile["libc"],
|
|
"glib2",
|
|
"harfbuzz",
|
|
"fribidi",
|
|
"fontconfig",
|
|
"freetype2",
|
|
"cairo",
|
|
]
|
|
|
|
configure, build, install = meson(
|
|
configure_args=[
|
|
"-Dintrospection=disabled",
|
|
"-Dgtk_doc=false",
|
|
"-Dxft=disabled",
|
|
],
|
|
)
|