lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit 1999356b63942833c0a550d34f33704cba49aa11
parent 65f1c2aaf99002d8062b4334de89bebe0e416fd4
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Mon,  5 May 2014 14:14:36 +0100

Add v1.5 rockspec

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

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