-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ddfb826
commit 0773607
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
build = { | ||
modules = { | ||
luabox = "luabox.lua", | ||
["luabox.clear"] = "luabox/clear.lua", | ||
["luabox.colors"] = "luabox/colors.lua", | ||
["luabox.console"] = "luabox/console.lua", | ||
["luabox.cursor"] = "luabox/cursor.lua", | ||
["luabox.event"] = "luabox/event.lua", | ||
["luabox.init"] = "luabox/init.lua", | ||
["luabox.screen"] = "luabox/screen.lua", | ||
["luabox.scroll"] = "luabox/scroll.lua", | ||
["luabox.util"] = "luabox/util.lua" | ||
}, | ||
type = "builtin" | ||
} | ||
dependencies = { | ||
"luv" | ||
} | ||
description = { | ||
detailed = "Small low-level terminal API library. This is a rewrite of Termion, a Rust library, for Lua.\n", | ||
homepage = "https://github.com/Sylviettee/luabox", | ||
labels = { | ||
"tui", | ||
"terminal" | ||
}, | ||
license = "MIT", | ||
summary = "Small low-level terminal API library." | ||
} | ||
package = "luabox" | ||
rockspec_format = "3.0" | ||
source = { | ||
tag = "v1.3", | ||
url = "git://github.com/Sylviettee/luabox.git" | ||
} | ||
version = "1.3-1" |