md5-1.0-2.rockspec 615 B

12345678910111213141516171819202122
  1. package = "md5"
  2. version = "1.0-2"
  3. source = {
  4. url = "https://github.com/kikito/md5.lua/archive/v1.0.2.tar.gz",
  5. dir = "md5.lua-1.0.2"
  6. }
  7. description = {
  8. summary = "MD5 sum in pure Lua, with no C and no external dependencies",
  9. detailed = "This pure-Lua module computes md5 in Lua 5.1, Lua 5.2 and LuaJIT, using native bit-manipulation libraries when available, and falling back to table-based manipulation of integers in 5.1",
  10. homepage = "https://github.com/kikito/md5.lua",
  11. license = "MIT"
  12. }
  13. dependencies = {
  14. "lua >= 5.1"
  15. }
  16. build = {
  17. type = "builtin",
  18. modules = {
  19. md5 = "md5.lua"
  20. }
  21. }