-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcpplibs.xpkg.lua
More file actions
32 lines (31 loc) · 1.29 KB
/
mcpplibs.xpkg.lua
File metadata and controls
32 lines (31 loc) · 1.29 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
-- Form A descriptor: the upstream repo ships its own mcpp.toml from
-- v0.0.39 onwards, so we omit the `mcpp` field — mcpp default-look-up
-- finds <verdir>/libxpkg-<tag>/mcpp.toml inside the GitHub tarball wrap.
package = {
spec = "1",
name = "mcpplibs.xpkg",
description = "C++23 reference implementation of the xpkg V1 spec — `import mcpplibs.xpkg;`",
licenses = {"Apache-2.0"},
repo = "https://github.com/openxlings/libxpkg",
type = "package",
xpm = {
linux = {
["0.0.39"] = {
url = "https://github.com/openxlings/libxpkg/archive/refs/tags/v0.0.39.tar.gz",
sha256 = "292d6a85da95b3615cc96f8e2e64dbe7767d059d8a8e9422bbc72db648f81f71",
},
},
macosx = {
["0.0.39"] = {
url = "https://github.com/openxlings/libxpkg/archive/refs/tags/v0.0.39.tar.gz",
sha256 = "292d6a85da95b3615cc96f8e2e64dbe7767d059d8a8e9422bbc72db648f81f71",
},
},
windows = {
["0.0.39"] = {
url = "https://github.com/openxlings/libxpkg/archive/refs/tags/v0.0.39.tar.gz",
sha256 = "292d6a85da95b3615cc96f8e2e64dbe7767d059d8a8e9422bbc72db648f81f71",
},
},
},
}