summaryrefslogtreecommitdiff
path: root/Data/BuiltIn/Libraries/md5.lua/rockspecs/md5-1.0-0.rockspec
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-11-15 11:54:17 +0800
committerchai <chaifix@163.com>2021-11-15 11:54:17 +0800
commit30f2f46474bf4eda5f10d4c64a07cde01d469f66 (patch)
tree6ff2ed3262037b3c9bae2d2b9059a1d65773f31c /Data/BuiltIn/Libraries/md5.lua/rockspecs/md5-1.0-0.rockspec
parent4c36bed53fe63ae6056730b3ecad2573f03d88f8 (diff)
*rename DefaultContent -> BuiltIn
Diffstat (limited to 'Data/BuiltIn/Libraries/md5.lua/rockspecs/md5-1.0-0.rockspec')
-rw-r--r--Data/BuiltIn/Libraries/md5.lua/rockspecs/md5-1.0-0.rockspec21
1 files changed, 21 insertions, 0 deletions
diff --git a/Data/BuiltIn/Libraries/md5.lua/rockspecs/md5-1.0-0.rockspec b/Data/BuiltIn/Libraries/md5.lua/rockspecs/md5-1.0-0.rockspec
new file mode 100644
index 0000000..4103148
--- /dev/null
+++ b/Data/BuiltIn/Libraries/md5.lua/rockspecs/md5-1.0-0.rockspec
@@ -0,0 +1,21 @@
+package = "md5"
+version = "1.0-0"
+source = {
+ url = "https://github.com/kikito/md5.lua/archive/v1.0.0.tar.gz",
+ dir = "md5.lua-1.0.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"
+ }
+}