parent
90c83e59de
commit
55d6f70252
@ -0,0 +1,23 @@
|
||||
package = "lua-llthreads"
|
||||
version = "1.0-1"
|
||||
source = {
|
||||
url = "git://github.com/Neopallium/lua-llthreads.git",
|
||||
branch = "v1.0",
|
||||
}
|
||||
description = {
|
||||
summary = "Low-Level threads for Lua",
|
||||
homepage = "http://github.com/Neopallium/lua-llthreads",
|
||||
license = "MIT/X11",
|
||||
}
|
||||
dependencies = {
|
||||
"lua >= 5.1",
|
||||
}
|
||||
build = {
|
||||
type = "builtin",
|
||||
modules = {
|
||||
llthreads = {
|
||||
sources = {"src/pre_generated-llthreads.nobj.c"},
|
||||
libraries = {"pthread"},
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,22 +1,22 @@
|
||||
package = "lua-llthreads"
|
||||
version = "scm-0"
|
||||
source = {
|
||||
url = "git://github.com/Neopallium/lua-llthreads.git"
|
||||
url = "git://github.com/Neopallium/lua-llthreads.git",
|
||||
}
|
||||
description = {
|
||||
summary = "Low-Level threads for Lua",
|
||||
homepage = "http://github.com/Neopallium/lua-llthreads",
|
||||
license = "MIT/X11"
|
||||
license = "MIT/X11",
|
||||
}
|
||||
dependencies = {
|
||||
"lua >= 5.1"
|
||||
"lua >= 5.1",
|
||||
}
|
||||
build = {
|
||||
type = "builtin",
|
||||
modules = {
|
||||
llthreads = {
|
||||
sources = {"src/pre_generated-llthreads.nobj.c"},
|
||||
libraries = {"pthread"}
|
||||
libraries = {"pthread"},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue