From 7fc429b519a5ae6b5edcd64f028035f72afb5ba9 Mon Sep 17 00:00:00 2001 From: kikito Date: Mon, 6 Apr 2015 21:13:45 +0200 Subject: [PATCH] add rockspec --- rockspecs/md5-1.0-2.rockspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 rockspecs/md5-1.0-2.rockspec diff --git a/rockspecs/md5-1.0-2.rockspec b/rockspecs/md5-1.0-2.rockspec new file mode 100644 index 0000000..c8034f9 --- /dev/null +++ b/rockspecs/md5-1.0-2.rockspec @@ -0,0 +1,21 @@ +package = "md5" +version = "1.0-2" +source = { + url = "https://github.com/kikito/md5.lua/archive/v1.0.2.tar.gz", + dir = "md5.lua-1.0.2" +} +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" + } +}