Browse Source

Forgot dependencies

Greatwolf 8 years ago
parent
commit
dbb27e6589
1 changed files with 24 additions and 0 deletions
  1. 24 0
      rockspec/rxlua-scm-2.rockspec

+ 24 - 0
rockspec/rxlua-scm-2.rockspec

@@ -0,0 +1,24 @@
+package = "rxlua"
+version = "scm-2"
+
+source = { url = "git://github.com/bjornbytes/RxLua.git" }
+
+description =
+{
+  summary = "Reactive Extensions for Lua",
+  homepage = "https://github.com/bjornbytes/RxLua/tree/master",
+  license = "MIT/X11",
+  maintainer = "[email protected]",
+  detailed = [[
+RxLua gives Lua the power of Observables, which are data structures that represent a stream of values that arrive over time. They're very handy when dealing with events, streams of data, asynchronous requests, and concurrency.
+]]
+}
+
+dependencies = { "lua >= 5.1" }
+
+build =
+{
+  type = "builtin",
+  modules = { rx = "rx.lua", },
+  copy_directories = { "doc", "tests" }
+}