lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit 2610d2acd289f00825eff14d4712eb60cf9fb733
parent 4664ead0fe52c903f23c1f69d645f1c787806fc7
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Wed, 14 Jan 2015 16:31:52 +0000

Add v2.0 rockspec

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

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