-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathopenkal-windows.lua
More file actions
75 lines (73 loc) · 3.7 KB
/
Copy pathopenkal-windows.lua
File metadata and controls
75 lines (73 loc) · 3.7 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
-- openkal-windows --- an implementation for a system that shares no ancestry
-- with the one openkal was first written on.
--
-- No `deps`. The interfaces it uses are the ones every installation of that
-- system already has, and it names them in the objects it produces rather than
-- on a link line, so a project that selects it needs nothing further.
--
-- 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(windows)`, 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-windows",
description = "An implementation of openkal for Windows, on the Win32 interfaces and the object manager beneath them, using no C runtime symbol",
licenses = {"Apache-2.0"},
repo = "https://github.com/mcpplibs/openkal-windows",
type = "package",
xpm = {
linux = {
["0.1.2"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-windows/archive/refs/tags/0.1.2.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-windows/releases/download/0.1.2/openkal-windows-0.1.2.tar.gz",
},
sha256 = "4e4104301ce2dea208de3fca64679bfe2c239aa63cd85fd816065b4dadb3d8b3",
},
["0.1.1"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-windows/archive/refs/tags/0.1.1.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-windows/releases/download/0.1.1/openkal-windows-0.1.1.tar.gz",
},
sha256 = "e4e517c80d030eacd5427e85c4431a425d098a151c263554bf79d277f360d444",
},
},
macosx = {
["0.1.2"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-windows/archive/refs/tags/0.1.2.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-windows/releases/download/0.1.2/openkal-windows-0.1.2.tar.gz",
},
sha256 = "4e4104301ce2dea208de3fca64679bfe2c239aa63cd85fd816065b4dadb3d8b3",
},
["0.1.1"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-windows/archive/refs/tags/0.1.1.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-windows/releases/download/0.1.1/openkal-windows-0.1.1.tar.gz",
},
sha256 = "e4e517c80d030eacd5427e85c4431a425d098a151c263554bf79d277f360d444",
},
},
windows = {
["0.1.2"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-windows/archive/refs/tags/0.1.2.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-windows/releases/download/0.1.2/openkal-windows-0.1.2.tar.gz",
},
sha256 = "4e4104301ce2dea208de3fca64679bfe2c239aa63cd85fd816065b4dadb3d8b3",
},
["0.1.1"] = {
url = {
GLOBAL = "https://github.com/mcpplibs/openkal-windows/archive/refs/tags/0.1.1.tar.gz",
CN = "https://gitcode.com/mcpp-res/openkal-windows/releases/download/0.1.1/openkal-windows-0.1.1.tar.gz",
},
sha256 = "e4e517c80d030eacd5427e85c4431a425d098a151c263554bf79d277f360d444",
},
},
},
-- The package's own manifest, inside the tarball's wrap directory.
mcpp = "*/mcpp.toml",
}