forked from OpenPrograms/lunaboards-dev-Programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
programs.cfg
32 lines (32 loc) · 788 Bytes
/
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
{
["uncpio"] = {
files = {
["master/uncpio/uncpio.lua"] = "/bin"
},
name = "Simple binary CPIO extractor.",
description = "Extracts all files from a binary CPIO archive.",
authors = "Adorable-Catgirl",
repo = "tree/master/uncpio/"
},
["icekey"] = {
files = {
["master/icekey/icekey.lua"] = "/lib"
},
name = "ICE Encryption",
description = "A DES-like block cipher, now in Lua",
authors = "Adorable-Catgirl",
repo = "tree/master/icekey",
},
["igloo"] = {
files = {
["master/igloo/igloo.lua"] = "/lib"
},
dependencies = {
["icekey"] = "/lib"
},
name = "Igloo Encryption Library",
description = "An easy way to use ICE encryption!",
authors = "Adorable-Catgirl",
repo = "tree/master/igloo",
}
}