rxlove-0.0.1-1.rockspec 476 B

123456789101112131415161718192021222324252627
  1. package = 'RxLove'
  2. version = '0.0.1-1'
  3. source = {
  4. url = 'git://github.com/bjornbytes/RxLove',
  5. tag = 'v0.0.1'
  6. }
  7. description = {
  8. summary = 'Reactive Extensions for LÖVE',
  9. homepage = 'https://github.com/bjornbytes/RxLove',
  10. license = 'MIT/X11',
  11. maintainer = '[email protected]',
  12. detailed = [[
  13. Turn LÖVE events into reactive streams.
  14. ]]
  15. }
  16. dependencies = {
  17. 'lua >= 5.1',
  18. 'rxlua'
  19. }
  20. build = {
  21. type = 'builtin',
  22. modules = { rxlove = 'rx-love.lua' }
  23. }