From 724d5689fecb8bb5298ad7ee0d668bc967536ca5 Mon Sep 17 00:00:00 2001 From: bakpakin Date: Sun, 26 Apr 2015 11:28:04 +0800 Subject: [PATCH] Add 1.0.1 rockspec. --- rockspecs/tinyecs-1.0.1.rockspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 rockspecs/tinyecs-1.0.1.rockspec diff --git a/rockspecs/tinyecs-1.0.1.rockspec b/rockspecs/tinyecs-1.0.1.rockspec new file mode 100644 index 0000000..f0216b9 --- /dev/null +++ b/rockspecs/tinyecs-1.0.1.rockspec @@ -0,0 +1,24 @@ +package = "tiny-ecs" +version = "1.0.1" +source = { + url = "git://github.com/bakpakin/tiny-ecs", + tag = "1.0.1" +} +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" + } +} \ No newline at end of file