49bf7bbb5d
- Introduced `r.toml` for R package configuration, including build flags and dependencies. - Added `sdl2-compat.toml` for SDL2 compatibility layer with SDL3, specifying build and runtime dependencies. - Created a patch for SDL3 to handle cases when XInput2 is not available, ensuring compatibility. - Added `sdl3.toml` for SDL3 configuration, including build flags and dependencies. - Introduced `tk.toml` for Tk configuration, detailing build flags and runtime dependencies. - Added a patch for Vala to ensure POSIX compliance in the test runner script, improving portability.
44 lines
731 B
TOML
44 lines
731 B
TOML
[build]
|
|
type = "meson"
|
|
|
|
[build.flags]
|
|
build_dir = "build"
|
|
configure = [
|
|
"-Dman-pages=true",
|
|
"-Ddocumentation=false",
|
|
"-Dsysprof=disabled",
|
|
]
|
|
skip_tests = true
|
|
|
|
[dependencies]
|
|
build = [
|
|
"gobject-introspection",
|
|
"help2man",
|
|
"meson",
|
|
"python-docutils",
|
|
]
|
|
runtime = [
|
|
"cairo",
|
|
"fontconfig",
|
|
"freetype2",
|
|
"fribidi",
|
|
"glib2",
|
|
"glibc",
|
|
"harfbuzz",
|
|
"libthai",
|
|
"libx11",
|
|
"libxft",
|
|
"libxrender",
|
|
]
|
|
|
|
[package]
|
|
description = "A library for layout and rendering of text"
|
|
homepage = "https://www.pango.org/"
|
|
license = "LGPL-2.1-or-later"
|
|
name = "pango"
|
|
version = "1.57.0"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
url = "https://gitlab.gnome.org/GNOME/pango.git#$version"
|