mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-08 19:48:07 +11:00
22 lines
329 B
Lua
22 lines
329 B
Lua
-- This is released into the public domain.
|
|
-- No warranty is provided, implied or otherwise.
|
|
|
|
-- local.lua : CLAW Repository Metadata
|
|
-- Authors: 20kdc
|
|
|
|
return {
|
|
["app-eeprog"] = {
|
|
desc = "EEPROM programmer / copier",
|
|
v = 0,
|
|
deps = {
|
|
"neo"
|
|
},
|
|
dirs = {
|
|
"apps"
|
|
},
|
|
files = {
|
|
"apps/app-eeprog.lua"
|
|
},
|
|
}
|
|
}
|