tiny-ecs/rockspecs/tiny-ecs-1.0-2.rockspec

25 lines
553 B
Plaintext
Raw Normal View History

2015-04-26 03:28:04 +00:00
package = "tiny-ecs"
2015-04-26 03:35:23 +00:00
version = "1.0-2"
2015-04-26 03:28:04 +00:00
source = {
url = "git://github.com/bakpakin/tiny-ecs",
2016-06-19 15:01:57 +00:00
tag = version
2015-04-26 03:28:04 +00:00
}
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"
}
2015-04-27 13:48:27 +00:00
}