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,31 @@
|
||||
[build]
|
||||
type = "autotools"
|
||||
|
||||
[build.flags]
|
||||
configure = [
|
||||
"--disable-static",
|
||||
"--disable-error-on-warning",
|
||||
]
|
||||
post_install = [ 'rm "$DESTDIR"/usr/lib/libguile-3.?.so.*-gdb.scm' ]
|
||||
[dependencies]
|
||||
build = ["texinfo"]
|
||||
runtime = [
|
||||
"gmp",
|
||||
"ncurses",
|
||||
"libunistring",
|
||||
"gc",
|
||||
"libffi",
|
||||
"libxcrypt",
|
||||
]
|
||||
|
||||
[package]
|
||||
description = "Portable, embeddable Scheme implementation written in C"
|
||||
homepage = "https://www.gnu.org/software/guile/"
|
||||
license = "AGPL-3.0-or-Later"
|
||||
name = "guile"
|
||||
version = "3.0.11"
|
||||
|
||||
[[source]]
|
||||
extract_dir = "$name-$version"
|
||||
sha256 = "3c9c16972a73bb792752f2e4f1cce7212d7638d5494b5f7e8e19f3819dbf3a19"
|
||||
url = "https://mirrors.kernel.org/gnu/guile/guile-$version.tar.gz"
|
||||
Reference in New Issue
Block a user