-
Notifications
You must be signed in to change notification settings - Fork 16
/
programs.cfg
42 lines (41 loc) · 1.26 KB
/
programs.cfg
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
{
["gml"] = {
files = {
["master/gml/lib/canvas.lua"] = "/lib",
["master/gml/lib/colorutils.lua"] = "/lib",
["master/gml/lib/default.gss"] = "/lib",
["master/gml/lib/gfxbuffer.lua"] = "/lib",
["master/gml/lib/gml.lua"] = "/lib",
["master/gml/lib/gmlDialogs.lua"] = "/lib",
},
name = "GML",
description = "Gopher's GUI Libraries for OpenComputers",
authors = "Gopher",
note = "see gml-examples package for sample programs, and the repo wiki on github for documentation",
repo="tree/master/gml"
},
["gml-examples"] = {
files = {
["master/gml/bin/gmltest.lua"] = "/bin",
["master/gml/bin/savedlg.lua"] = "/bin",
},
dependencies = {
["gml"] = "/",
},
name = "GML Examples",
description = "Example programs using GML",
authors = "Gopher",
note = "A pair of example programs showing use of GML features to make GUI interfaces.",
repo="tree/master/gml"
},
["gitrepo"] = {
files = {
["master/gitrepo.lua"] = "/bin",
},
name = "gitrepo",
description = "Basic git repo downloader",
authors = "Gopher",
note = "downloads an entire github repository to a specified directory",
repo="tree/master/gitrepo.lua"
},
}