-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathopenkal-linux.lua
More file actions
94 lines (92 loc) · 4.67 KB
/
Copy pathopenkal-linux.lua
File metadata and controls
94 lines (92 loc) · 4.67 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
-- openkal-linux --- the reference implementation.
--
-- No `deps`. The implementation uses the C library of the host, which mcpp
-- already supplies for a hosted target; nothing further is required.
--
-- The package is listed for every platform because a descriptor's platform
-- table describes availability rather than applicability. A project selects
-- this implementation with a conditional dependency on `cfg(os = "linux")`,
-- and a project that selects it elsewhere fails at compile time, which is the
-- correct place for that failure.
package = {
spec = "1",
namespace = "mcpplibs",
name = "openkal-linux",
description = "The reference implementation of openkal for Linux, maintained as a worked example",
licenses = {"Apache-2.0"},
repo = "https://github.com/mcpplibs/openkal-linux",
type = "package",
xpm = {
linux = {
["0.5.2"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-linux/archive/refs/tags/0.5.2.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-linux/releases/download/0.5.2/openkal-linux-0.5.2.tar.gz",
},
sha256 = "f8729db43107cadc371d64f557950769ed2fc75c00ea2009504d1ca084e7f8fb",
},
["0.5.1"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-linux/archive/refs/tags/0.5.1.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-linux/releases/download/0.5.1/openkal-linux-0.5.1.tar.gz",
},
sha256 = "fa9dd5daff81666e80b38f213e9b9a073e8461946f0a58a911fc67a04f1d8415",
},
["0.4.0"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-linux/archive/refs/tags/0.4.0.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-linux/releases/download/0.4.0/openkal-linux-0.4.0.tar.gz",
},
sha256 = "6477c9b52931e0f14d243467ed5dcc0cece8095d0dbdd2bc8591a63e4025290e",
},
},
macosx = {
["0.5.2"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-linux/archive/refs/tags/0.5.2.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-linux/releases/download/0.5.2/openkal-linux-0.5.2.tar.gz",
},
sha256 = "f8729db43107cadc371d64f557950769ed2fc75c00ea2009504d1ca084e7f8fb",
},
["0.5.1"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-linux/archive/refs/tags/0.5.1.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-linux/releases/download/0.5.1/openkal-linux-0.5.1.tar.gz",
},
sha256 = "fa9dd5daff81666e80b38f213e9b9a073e8461946f0a58a911fc67a04f1d8415",
},
["0.4.0"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-linux/archive/refs/tags/0.4.0.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-linux/releases/download/0.4.0/openkal-linux-0.4.0.tar.gz",
},
sha256 = "6477c9b52931e0f14d243467ed5dcc0cece8095d0dbdd2bc8591a63e4025290e",
},
},
windows = {
["0.5.2"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-linux/archive/refs/tags/0.5.2.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-linux/releases/download/0.5.2/openkal-linux-0.5.2.tar.gz",
},
sha256 = "f8729db43107cadc371d64f557950769ed2fc75c00ea2009504d1ca084e7f8fb",
},
["0.5.1"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-linux/archive/refs/tags/0.5.1.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-linux/releases/download/0.5.1/openkal-linux-0.5.1.tar.gz",
},
sha256 = "fa9dd5daff81666e80b38f213e9b9a073e8461946f0a58a911fc67a04f1d8415",
},
["0.4.0"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-linux/archive/refs/tags/0.4.0.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-linux/releases/download/0.4.0/openkal-linux-0.4.0.tar.gz",
},
sha256 = "6477c9b52931e0f14d243467ed5dcc0cece8095d0dbdd2bc8591a63e4025290e",
},
},
},
-- The package's own manifest, inside the tarball's wrap directory.
mcpp = "*/mcpp.toml",
}