bjorn 8 anni fa
parent
commit
8093a36eb6
1 ha cambiato i file con 27 aggiunte e 0 eliminazioni
  1. 27 0
      rxlove-0.0.1-1.rockspec

+ 27 - 0
rxlove-0.0.1-1.rockspec

@@ -0,0 +1,27 @@
+package = 'RxLove'
+version = '0.0.1-1'
+
+source = {
+  url = 'git://github.com/bjornbytes/RxLove',
+  tag = 'v0.0.1'
+}
+
+description = {
+  summary = 'Reactive Extensions for LÖVE',
+  homepage = 'https://github.com/bjornbytes/RxLove',
+  license = 'MIT/X11',
+  maintainer = '[email protected]',
+  detailed = [[
+    Turn LÖVE events into reactive streams.
+  ]]
+}
+
+dependencies = {
+  'lua >= 5.1',
+  'rxlua'
+}
+
+build = {
+  type = 'builtin',
+  modules = { rxlove = 'rx-love.lua' }
+}