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.
43 lines
1014 B
TOML
43 lines
1014 B
TOML
[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" ]
|