tiny-ecs/tiny-ecs-scm-0.rockspec

24 lines
535 B
Plaintext
Raw Normal View History

2015-06-07 22:47:50 +00:00
package = "tiny-ecs"
2015-06-08 00:05:56 +00:00
version = "scm-0"
2015-06-07 22:47:50 +00:00
source = {
url = "git://github.com/bakpakin/tiny-ecs",
}
description = {
summary = "Entity Component System for Lua.",
detailed = [[
Pure Lua implementation of an easy to use, compact, fast, and flexible
Entity Component System. Works well with Object Orientation.
]],
homepage = "https://github.com/bakpakin/tiny-ecs",
license = "MIT"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
tiny = "tiny.lua"
}
}