27 lines
1.0 KiB
TOML
27 lines
1.0 KiB
TOML
name = "spawn"
|
|
description = "A simple library to spawn processes and communicate with them."
|
|
long-description = "This is Glib indepentent implementation of a spawn processes interface."
|
|
version = "24.0.0"
|
|
website = "https://github.com/AdaCore/spawn"
|
|
authors = ["AdaCore"]
|
|
licenses = "Apache-2.0 WITH LLVM-exception"
|
|
maintainers = ["Vadim Godunko <vgodunko@gmail.com>", "Max Reznik <reznikmm@gmail.com>"]
|
|
maintainers-logins = ["godunko", "reznikmm"]
|
|
project-files = ["gnat/spawn.gpr"]
|
|
tags = ["process", "launch", "pipe"]
|
|
|
|
[configuration]
|
|
disabled = true
|
|
|
|
[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/v24.0.0/spawn-24.0.0.zip"
|
|
hashes=['sha512:8f4c2fa819422f3d4f2e3de6dca7ab2020fc572aa2ac95ab110f73401b57e466987a71bafe3ec2a15c615ffbd0056004408e245b22b3b4595f8a4c1b53f6ac27']
|