-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge Rockspec PR #1 from daelvn/master
Added rockspec
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package = "raisin" | ||
version = "3.0-1" | ||
description = { | ||
summary = "Threads made easy", | ||
detailed = [[ | ||
Raisin is a priority based coroutine manager with a few additional twists. | ||
Its name in its prototyping stage was originally 'ryzen', the joke being | ||
that it was a 'threadripper'. Obviously that name is a poor choice, so | ||
something similar was decided upon. As is evident Raisin is designed for | ||
lua's coroutines to allow for many freedoms, such as manual prioritization, | ||
grouping, toggling, and a manual coroutine death termination amount.]], | ||
homepage = "https://github.com/hugeblank/raisin", | ||
} | ||
source = { | ||
url = "git://github.com/hugeblank/raisin.git", | ||
tag = "v3.0", | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { ["raisin"] = "raisin.lua" }, | ||
} |