lua-mp-scm-1.rockspec 422 B

1234567891011121314151617181920212223242526
  1. package = "lua-mp"
  2. version = "scm-1"
  3. source = {
  4. url = "git://github.com/starwing/lua-mp.git",
  5. }
  6. description = {
  7. summary = "yet another msgpack implement for Lua",
  8. detailed = [[
  9. This project implements a tiny msgpack C module for Lua
  10. ]],
  11. homepage = "https://github.com/starwing/lua-mp",
  12. license = "MIT",
  13. }
  14. dependencies = {
  15. "lua >= 5.1"
  16. }
  17. build = {
  18. type = "builtin",
  19. modules = {
  20. mp = "mp.c";
  21. }
  22. }