OpenComputerScripts/programs.info

130 lines
3.6 KiB
Plaintext

{
["grab"]={
title="Grab",
info="Grab - Official OpenComputerScripts Installer",
files={
"grab.lua",
["grab_installer.lua"]="/tmp/.grab_installer.lua"
},
installer="/tmp/.grab_installer.lua"
},
["checkarg"]={
title="Arugment Checker",
info="For easier argument checking",
files={
["libs/checkarg.lua"]="checkarg.lua"
}
},
["util"]={
title="Utility",
info="Misc programming helper.",
files={
["libs/util.lua"]="util.lua"
}
},
["libevent"]={
title="LibEvent",
info="For easier event processing",
files={
["libs/libevent.lua"]="libevent.lua",
["libs/libevent_doc.txt"]={
"/usr/man/libevent",
"/tmp/libevent_doc.txt"
}
},
requires={
"checkarg"
}
},
["libgpu"]={
title="LibGPU",
info="For easier gpu programming",
files={
["libs/libgpu.lua"]="libgpu.lua"
}
},
["simple_data_structure"]={
title="Simple Lua Data Structure",
info="Provides class(...),queue and vector",
files={
["libs/simple_data_structure/class.lua"]="class.lua",
["libs/simple_data_structure/queue.lua"]="queue.lua",
["libs/simple_data_structure/vector.lua"]="vector.lua"
}
},
["minesweeper"]={
title="Mine Sweeper",
info="A simple game",
files={
"MineSweeper.lua"
},
requires={
"libgpu","libevent","simple_data_structure"
}
},
["shrink"]={
title="Shrink",
info="Shrink string by removing useless spaces.",
files={
"shrink.lua"
}
},
["libhuffman"]={
title="Huffman compression library",
info="Inflate and deflate in Huffman algorithm.",
files={
"libhuffman.lua"
}
},
["drone"]={
title="Drone",
info="Drone console and bios",
author="Kiritow",
contact="1362050620@qq.com",
files={
["programs/drone/drone_bios.lua"]="drone_bios.lua",
["programs/drone/drone_console.lua"]="drone_console.lua",
["programs/drone/drone_radar.lua"]="drone_radar.lua",
["programs/drone/drone_flash.lua"]="drone_flash.lua"
},
requires={
"libevent", "shrink"
}
},
["smartstorage"]={
title="Smart Storage",
info="Smarter chests, auto-crafting...",
author="Kiritow",
files={
["programs/smartstorage/SmartStorage.lua"]="SmartStorage.lua"
},
requires={
"libevent"
}
},
["smartstoragerobot"]={
title="Smart Storage Robot Client",
info="This is the client program of Smart Storage System.",
author="Kiritow",
files={
["programs/smartstorage/SmartStorageRobot.lua"]="SmartStorageRobot.lua"
},
requires={
"libevent"
}
},
["station"]={
title="Station",
info="Collection of railway station control programs.",
deprecated=true,
files={
["programs/station/station_2_3.lua"]="station_2_3.lua",
["programs/station/station_2_4.lua"]="station_2_4.lua",
["programs/station/station_2_4_2.lua"]="station_2_4_2.lua",
["programs/station/station_2_6.lua"]="station_2_6.lua"
},
requires={
"libevent","checkarg","util","simple_data_structure"
}
}
}