Skip to content

Commit

Permalink
Add rockspec for v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsauce committed Aug 11, 2015
1 parent a861f56 commit f671510
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions rockspecs/turbo-2.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package = "turbo"
version = "2.0-1"
supported_platforms = {"linux"}
source = {
url = "git://github.com/kernelsauce/turbo",
tag = "v2.0.1"
}
description = {
summary = "A networking suite for LuaJIT2, optimized for performance.",
detailed = [[Turbo.lua is just another framework to create network programs for Linux. It uses kernel
event polling to manage network connections instead of the traditional concurency models that employ
threads. As it does not use threads, no locks, mutexes or other bad things are required. It solves the
same issues as Node.js, Tornado etc. except it solves it with Lua. A simple, yet powerful language that
fits nicely with the event polling model with its builtin coroutines.]],
homepage = "http://turbolua.org",
maintainer = "John Abrahamsen <jhnabrhmsn@gmail.com>",
license = "Apache 2.0"
}
build = {
type = "make",
makefile = "Makefile"
}

0 comments on commit f671510

Please sign in to comment.