-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathMETA6.json
69 lines (69 loc) · 2.59 KB
/
META6.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"meta-version": 1,
"name" : "Inline::Perl5",
"version" : "0.60",
"perl" : "6.c",
"auth" : "github:niner",
"authors" : [ "Stefan Seifert" ],
"description" : "Use Perl 5 code in a Raku program",
"depends" : {
"build": {
"requires": [
"Distribution::Builder::MakeFromJSON:ver<0.6+>",
{
"from" : "bin",
"name" : "perl"
}
]
},
"runtime": {
"requires": [
{
"from" : "bin",
"name" : "perl"
}
]
},
"test": {
"requires": [
"File::Temp"
]
}
},
"provides" : {
"Inline::Perl5": "lib/Inline/Perl5.pm6",
"Inline::Perl5::Array": "lib/Inline/Perl5/Array.pm6",
"Inline::Perl5::Attributes": "lib/Inline/Perl5/Attributes.pm6",
"Inline::Perl5::Callable": "lib/Inline/Perl5/Callable.pm6",
"Inline::Perl5::Caller": "lib/Inline/Perl5/Caller.pm6",
"Inline::Perl5::ClassHOW": "lib/Inline/Perl5/ClassHOW.pm6",
"Inline::Perl5::ClassHOW::ThreadSafe": "lib/Inline/Perl5/ClassHOW/ThreadSafe.pm6",
"Inline::Perl5::Exception": "lib/Inline/Perl5/Exception.pm6",
"Inline::Perl5::Hash": "lib/Inline/Perl5/Hash.pm6",
"Inline::Perl5::Interpreter": "lib/Inline/Perl5/Interpreter.pm6",
"Inline::Perl5::TypeGlob": "lib/Inline/Perl5/TypeGlob.pm6",
"Inline::Perl5::Perl5Class": "lib/Inline/Perl5/Perl5Class.rakumod",
"Inline::Language::ObjectKeeper": "lib/Inline/Language/ObjectKeeper.pm6",
"v5-inline": "lib/v5-inline.pm6"
},
"resources" : [
"libraries/p5helper"
],
"repo-type" : "git",
"source-url" : "git://github.com/niner/Inline-Perl5.git",
"license" : "Artistic-2.0",
"support" : {
"irc" : "irc://irc.freenode.org/#raku"
},
"builder": "Distribution::Builder::MakeFromJSON",
"build": {
"makefile-variables": {
"p5helper": {"resource": "libraries/p5helper"},
"perlopts": {
"run": [
"perl", "-MExtUtils::Embed", "-e", "ccopts", "-e", "ldopts"
]
}
}
}
}