summaryrefslogtreecommitdiff
path: root/Data/DefaultContent/Libraries/md5.lua/rockspecs/md5-1.0-1.rockspec
blob: f9f5203df434e322b204f42b211bcf7d08bb5775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package = "md5"
version = "1.0-1"
source = {
  url = "https://github.com/kikito/md5.lua/archive/v1.0.1.tar.gz",
  dir = "md5.lua-1.0.1"
}
description = {
   summary = "MD5 sum in pure Lua, with no C and no external dependencies",
   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",
   homepage = "https://github.com/kikito/md5.lua",
   license = "MIT"
}
dependencies = {
   "lua >= 5.1"
}
build = {
   type = "builtin",
   modules = {
      md5 = "md5.lua"
   }
}