mirror of
https://github.com/Kiritow/OpenComputerScripts.git
synced 2024-03-22 13:10:46 +08:00
76 lines
1.7 KiB
Plaintext
76 lines
1.7 KiB
Plaintext
{
|
|
["grab"]={
|
|
title="Grab",
|
|
info="Grab - Official OpenComputerScripts Installer",
|
|
files={
|
|
"grab.lua",
|
|
["grab_installer"]="/tmp/.grab_installer"
|
|
},
|
|
installer="/tmp/.grab_installer"
|
|
},
|
|
["checkarg"]={
|
|
title="Arugment Checker",
|
|
info="For easier argument checking",
|
|
files={
|
|
"checkarg.lua"
|
|
}
|
|
},
|
|
["libevent"]={
|
|
title="LibEvent",
|
|
info="For easier event processing",
|
|
files={
|
|
"libevent.lua"
|
|
},
|
|
requires={
|
|
"checkarg"
|
|
}
|
|
},
|
|
["libgpu"]={
|
|
title="LibGPU",
|
|
info="For easier gpu programming",
|
|
files={
|
|
"libgpu.lua"
|
|
}
|
|
},
|
|
["simple_data_structure"]={
|
|
title="Simple Lua Data Structure",
|
|
info="Provides class(...),queue and vector",
|
|
files={
|
|
"class.lua", "queue.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={
|
|
"drone_bios.lua",
|
|
"drone_console.lua"
|
|
},
|
|
requires={
|
|
"libevent"
|
|
}
|
|
},
|
|
["smartstorage"]={
|
|
title="Smart Storage",
|
|
info="Smart Storage",
|
|
author="Kiritow",
|
|
files={
|
|
"SmartStorage.lua"
|
|
},
|
|
requires={
|
|
"libevent"
|
|
}
|
|
}
|
|
} |