Add configuration files and patches for R, SDL2, SDL3, Tk, and Vala
- 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.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
[build]
|
||||
type = "autotools"
|
||||
|
||||
[dependencies]
|
||||
build = ["xorg-util-macros"]
|
||||
runtime = [
|
||||
"libxext",
|
||||
"glibc",
|
||||
"libx11",
|
||||
"xorgproto",
|
||||
]
|
||||
|
||||
[package]
|
||||
description = "X11 Xinerama extension library"
|
||||
homepage = "https://xorg.freedesktop.org/"
|
||||
license = [
|
||||
"MIT",
|
||||
"MIT-open-group",
|
||||
"X11",
|
||||
]
|
||||
name = "libxinerama"
|
||||
version = "1.1.6"
|
||||
|
||||
[[source]]
|
||||
extract_dir = "$name-$version"
|
||||
sha256 = "d00fc1599c303dc5cbc122b8068bdc7405d6fcb19060f4597fc51bd3a8be51d7"
|
||||
url = "https://xorg.freedesktop.org/archive/individual/lib/libXinerama-$version.tar.xz"
|
||||
Reference in New Issue
Block a user