lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit d64cdc8bc46cff23aea4e7537070594fc6836f04
parent 24e0a29b782f33b24a65a36d0dbff1aa2cde067a
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat, 15 Aug 2015 11:37:07 +0100

Add v2.1 rockspec

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

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