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,42 @@
|
||||
[build]
|
||||
type = "meson"
|
||||
|
||||
[build.flags]
|
||||
build_dir = "build"
|
||||
configure = ["-Dgtk_doc=true", "-Dbash_completion=false", "-Dvapi=true" ]
|
||||
post_install = [
|
||||
'install -Dm644 $DEPOT_SPECDIR/dconf-update.toml -t "$DESTDIR/usr/share/depot.d/hooks"',
|
||||
'install -D $DEPOT_SPECDIR/dconf-update.script "$DESTDIR/usr/share/depot.d/scripts/dconf/dconf-update"',
|
||||
'install -Dm644 /dev/null "$DESTDIR/etc/dconf/db/.placeholder"'
|
||||
]
|
||||
skip-tests = true
|
||||
|
||||
[dependencies]
|
||||
build = [
|
||||
"dbus",
|
||||
"gtk-doc",
|
||||
"meson",
|
||||
"python",
|
||||
"vala",
|
||||
]
|
||||
runtime = [
|
||||
"sh",
|
||||
"glib2",
|
||||
"glibc",
|
||||
"libunwind",
|
||||
]
|
||||
|
||||
[package]
|
||||
description = "Configuration database system"
|
||||
homepage = "https://wiki.gnome.org/Projects/dconf"
|
||||
license = "LGPL-2.1-or-later"
|
||||
name = "dconf"
|
||||
version = "0.49.0"
|
||||
|
||||
[[source]]
|
||||
extract_dir = "$name-$version"
|
||||
sha256 = "md5:1a3ff8a464a4d9ebbaf112005bfed95a"
|
||||
url = "https://download.gnome.org/sources/dconf/0.49/dconf-$version.tar.xz"
|
||||
|
||||
[[manual_sources]]
|
||||
files = [ "dconf-update.toml", "dconf-update.script" ]
|
||||
Reference in New Issue
Block a user