-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalire.toml
44 lines (33 loc) · 1.18 KB
/
alire.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name = "tash"
description = "Binding to Tcl/Tk"
long-description = """
Tash (previously known as Tcl Ada Shell) is an Ada binding to Tcl/Tk.
Its purpose is to
* allow a Tcl program to use Ada in place of C to implement Tcl
commands where additional execution speed, more complex data
structures, or better name space management is needed, and
* support the rapid development of Platform-Independent Graphical User
Interfaces via Tk.
Please note that, on macOS, tash assumes that Tcl/Tk is provided via
[Homebrew](https://brew.sh).
"""
website = "https://github.com/simonjwright/tcladashell"
version = "8.7.2"
licenses = "GPL-2.0-or-later WITH GCC-exception-2.0"
authors = ["Simon Wright"]
maintainers = ["Simon Wright <simon@pushface.org>"]
maintainers-logins = ["simonjwright"]
project-files = ["tash.gpr"]
tags = ["scripting", "tcl", "tk"]
[gpr-externals]
TASH_LIBRARY_TYPE = ["static", "relocatable"]
[[depends-on]]
"libtcl" = "~8.6.0"
"libtk" = "~8.6.0"
[gpr-set-externals.'case(os)']
windows = { TASH_PLATFORM = "windows" }
linux = { TASH_PLATFORM = "linux" }
macos = { TASH_PLATFORM = "macos" }
[[actions]]
type = "post-fetch"
command = ["make", "-C", "src", "tcl_record_sizes.ads"]