lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit f327ebaab42550e956661c272a0826b2515f36dc
parent 4696deb473b0d5018dfc8284027656e142cbf346
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Tue, 25 Feb 2014 14:32:51 +0000

Add 1.4 rockspec

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

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