-
Notifications
You must be signed in to change notification settings - Fork 15
/
META6.json
52 lines (52 loc) · 1.48 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
{
"meta-version": 1,
"name" : "Inline::Python",
"license" : "Artistic-2.0",
"version" : "0.5",
"perl" : "6.c",
"auth" : "cpan:NINE",
"authors" : [ "Stefan Seifert" ],
"description" : "Use Python code and libraries in a Perl 6 program",
"depends" : {
"build": {
"requires": [
"Distribution::Builder::MakeFromJSON",
{
"from" : "bin",
"name" : {
"by-distro.name" : {
"macosx" : "python3-config",
"debian" : "python3-config",
"" : "python3-config"
}
}
}
]
}
},
"provides" : {
"Inline::Python" : "lib/Inline/Python.pm6"
},
"resources" : [ "libraries/pyhelper" ],
"source-url" : "git://github.com/niner/Inline-Python.git",
"builder": "Distribution::Builder::MakeFromJSON",
"build": {
"makefile-variables": {
"pyhelper": {"resource": "libraries/pyhelper"},
"cflags": {
"run": [
"python3-config",
"--cflags",
"--embed"
]
},
"ldflags": {
"run": [
"python3-config",
"--ldflags",
"--embed"
]
}
}
}
}