From 9c6268f32194ab081bd33703fdd55f6c96dafa7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dael=20Mu=C3=B1iz?= Date: Sat, 25 Apr 2020 01:34:17 +0000 Subject: [PATCH] Added rockspec --- raisin-3.0-1.rockspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 raisin-3.0-1.rockspec diff --git a/raisin-3.0-1.rockspec b/raisin-3.0-1.rockspec new file mode 100644 index 0000000..c31b05f --- /dev/null +++ b/raisin-3.0-1.rockspec @@ -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" }, +} \ No newline at end of file