-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5ff4e1
commit 1d07d1e
Showing
3 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package = "turbo" | ||
version = "2.0-3" | ||
supported_platforms = {"linux"} | ||
source = { | ||
url = "git://github.com/kernelsauce/turbo", | ||
tag = "v2.0.3" | ||
} | ||
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 <[email protected]>", | ||
license = "Apache 2.0" | ||
} | ||
build = { | ||
type = "make", | ||
makefile = "Makefile" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters