lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit d77d14c3901652b939d583f933f0d5d0876b6169
parent a9ee4886c067b8d4040aaac79a2ebc86c05d3951
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sun, 14 Feb 2016 10:10:10 +0000

Add 2.1-3 rockspec

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

diff --git a/rockspec/bcrypt-2.1-3.rockspec b/rockspec/bcrypt-2.1-3.rockspec @@ -0,0 +1,34 @@ +package = "bcrypt" +version = "2.1-3" + +source = { + url = "git://github.com/mikejsavage/lua-bcrypt.git", + tag = "v2.1-3", +} + +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", + }, + }, +}