lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit 5254068026133d6060437a4c23658ef59d6e2b72
parent 02a7d14b64ab664d7dcd68e90a6ffca076ff3da2
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Thu, 13 Apr 2017 23:53:58 +0300

Add 2.1-4 rockspec

Diffstat:
rockspec/bcrypt-2.1-4.rockspec | 34++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+), 0 deletions(-)

diff --git a/rockspec/bcrypt-2.1-4.rockspec b/rockspec/bcrypt-2.1-4.rockspec @@ -0,0 +1,34 @@ +package = "bcrypt" +version = "2.1-4" + +source = { + url = "git://github.com/mikejsavage/lua-bcrypt.git", + tag = "v2.1-4", +} + +description = { + summary = "A Lua wrapper for bcrypt", + homepage = "http://github.com/mikejsavage/lua-bcrypt", + license = "ISC", + maintainer = "Mike Savage", +} + +dependencies = { + "lua >= 5.1", +} + +build = { + type = "make", + + install_pass = false, + + build_variables = { + LUA_INCDIR = "$(LUA_INCDIR)", + }, + + install = { + lib = { + [ "bcrypt" ] = "bcrypt.so", + }, + }, +}