30 lines
1.1 KiB
TOML
30 lines
1.1 KiB
TOML
name = "spawn_glib"
|
|
description = "A simple library to spawn processes and communicate with them."
|
|
long-description = "This is Glib integrated implementation of a spawn processes interface."
|
|
version = "23.0.0"
|
|
website = "https://github.com/AdaCore/spawn"
|
|
authors = ["AdaCore"]
|
|
licenses = "Apache-2.0"
|
|
maintainers = ["Vadim Godunko <vgodunko@gmail.com>", "Max Reznik <reznikmm@gmail.com>"]
|
|
maintainers-logins = ["godunko", "reznikmm"]
|
|
project-files = ["gnat/spawn_glib.gpr"]
|
|
tags = ["process", "launch", "pipe", "glib"]
|
|
|
|
[configuration]
|
|
disabled = true
|
|
|
|
[[depends-on]]
|
|
gtkada = ">=23" # GtkAda 22 and latter
|
|
|
|
[gpr-externals]
|
|
OS = ["unix", "osx", "Windows_NT"]
|
|
|
|
[gpr-set-externals.'case(os)']
|
|
linux = { OS = "unix" } # Compact table syntax is convenient in this case
|
|
windows = { OS = "Windows_NT" } # to see all enumeration values, one per row.
|
|
macos = { OS = "osx" }
|
|
|
|
[origin]
|
|
url = "https://github.com/AdaCore/spawn/archive/refs/tags/v23.0.0.tar.gz"
|
|
hashes = ["sha512:440f8b8a45b7a322a5715a195f7e37e6f2641af8190166229e89a11ce6ab60511eb058432f4c3ffcdd670ec71b2509d5e23a80ac2e8dd6b7960bc42385bab86e"]
|