summaryrefslogtreecommitdiff
path: root/Resources/DefaultContent/Libraries/md5.lua/rockspecs/md5-1.1-0.rockspec
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-20 19:36:15 +0800
committerchai <chaifix@163.com>2021-10-20 19:36:15 +0800
commitf2dcd16fc72e2f10c9504897bacf5c4c2ecff516 (patch)
tree29cb7704db0e75bb16b31c1541abcf871f623cd8 /Resources/DefaultContent/Libraries/md5.lua/rockspecs/md5-1.1-0.rockspec
parentafdcbfa9c4259fb003fd072ae011836230e7e39b (diff)
+lua libs
Diffstat (limited to 'Resources/DefaultContent/Libraries/md5.lua/rockspecs/md5-1.1-0.rockspec')
-rw-r--r--Resources/DefaultContent/Libraries/md5.lua/rockspecs/md5-1.1-0.rockspec21
1 files changed, 21 insertions, 0 deletions
diff --git a/Resources/DefaultContent/Libraries/md5.lua/rockspecs/md5-1.1-0.rockspec b/Resources/DefaultContent/Libraries/md5.lua/rockspecs/md5-1.1-0.rockspec
new file mode 100644
index 0000000..ef1b392
--- /dev/null
+++ b/Resources/DefaultContent/Libraries/md5.lua/rockspecs/md5-1.1-0.rockspec
@@ -0,0 +1,21 @@
+package = "md5"
+version = "1.1-0"
+source = {
+ url = "https://github.com/kikito/md5.lua/archive/v1.1.0.tar.gz",
+ dir = "md5.lua-1.1.0"
+}
+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"
+ }
+}