From e24c665da149689a174f7aa62c0842de3180461c Mon Sep 17 00:00:00 2001
From: Benoit Germain <bnt.germain@gmail.com>
Date: Wed, 22 Aug 2012 21:34:44 +0200
Subject: rockspec for version 3.2.0

---
 lanes-3.2.0-1.rockspec | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)
 create mode 100644 lanes-3.2.0-1.rockspec

diff --git a/lanes-3.2.0-1.rockspec b/lanes-3.2.0-1.rockspec
new file mode 100644
index 0000000..2b59e34
--- /dev/null
+++ b/lanes-3.2.0-1.rockspec
@@ -0,0 +1,54 @@
+--
+-- Lanes rockspec
+--
+-- Ref:
+--      <http://luarocks.org/en/Rockspec_format>
+--
+
+package = "Lanes"
+
+version = "3.2.0-1"
+
+source= {
+	url= "git://github.com/LuaLanes/lanes.git",
+	branch= "v3.2.0"
+}
+
+description = {
+	summary= "Multithreading support for Lua",
+	detailed= [[
+		Lua Lanes is a portable, message passing multithreading library
+		providing the possibility to run multiple Lua states in parallel.
+	]],
+	license= "MIT/X11",
+	homepage="https://github.com/LuaLanes/lanes",
+	maintainer="Benoit Germain <bnt.germain@gmail.com>"
+}
+
+-- Q: What is the difference of "windows" and "win32"? Seems there is none;
+--    so should we list either one or both?
+--
+supported_platforms= { "win32",
+					   "macosx",
+					   "linux",
+					   "freebsd",   -- TBD: not tested
+					   "msys",      -- TBD: not supported by LuaRocks 1.0 (or is it?)
+}
+
+dependencies= {
+	"lua >= 5.1", -- builds with either 5.1 and 5.2
+}
+
+build = {
+	type = "builtin",
+	modules = 
+	{
+		["lanes.core"] =
+		{
+			sources = { "src/lanes.c", "src/keeper.c", "src/tools.c", "src/threading.c"},
+			incdirs = { "src"},
+		},
+		lanes = "src/lanes.lua"
+	}
+}
+
-- 
cgit v1.2.3-55-g6feb