From 8a3c22e74fb6e97a580c85b60bd857af47fea9a2 Mon Sep 17 00:00:00 2001 From: bakpakin Date: Wed, 10 Aug 2016 19:45:58 -0400 Subject: [PATCH] Add new rockspec. --- rockspecs/tiny-ecs-1.3-3.rockspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 rockspecs/tiny-ecs-1.3-3.rockspec diff --git a/rockspecs/tiny-ecs-1.3-3.rockspec b/rockspecs/tiny-ecs-1.3-3.rockspec new file mode 100644 index 0000000..47156f4 --- /dev/null +++ b/rockspecs/tiny-ecs-1.3-3.rockspec @@ -0,0 +1,24 @@ +package = "tiny-ecs" +version = "1.3-3" +source = { + url = "git://github.com/bakpakin/tiny-ecs", + tag = version +} +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" + } +}