OpenComputerScripts/programs.info
2018-11-24 21:33:02 +08:00

110 lines
3.0 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"
},
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"
}
},
["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"
},
requires={
"libevent"
}
},
["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"
}
}
}