Skip to content

Commit ee71ef0

Browse files
committed
Added rockspec for v2.1.0.
1 parent 8a09985 commit ee71ef0

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

rockspecs/turbo-2.1-0.rockspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package = "turbo"
2+
version = "2.1-0"
3+
supported_platforms = {"linux", "macosx"}
4+
source = {
5+
url = "git://github.com/kernelsauce/turbo",
6+
tag = "v2.1.0"
7+
}
8+
description = {
9+
summary = "A networking suite for LuaJIT2, optimized for performance.",
10+
detailed = [[Turbo.lua is just another framework to create network programs for Linux. It uses kernel
11+
event polling to manage network connections instead of the traditional concurency models that employ
12+
threads. As it does not use threads, no locks, mutexes or other bad things are required. It solves the
13+
same issues as Node.js, Tornado etc. except it solves it with Lua. A simple, yet powerful language that
14+
fits nicely with the event polling model with its builtin coroutines.]],
15+
homepage = "http://turbolua.org",
16+
maintainer = "John Abrahamsen <jhnabrhmsn@gmail.com>",
17+
license = "Apache 2.0"
18+
}
19+
build = {
20+
type = "make",
21+
makefile = "Makefile"
22+
}

0 commit comments

Comments
 (0)