lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit bf31e016413a9a2a56b98ac874f0bd2c934ffa2d
parent 3a8bda32360673dfbd8476cf7fbc3dffcd2185bf
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Tue, 17 Dec 2013 08:41:40 +0000

Add v1.3 rockspec

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

diff --git a/rockspec/bcrypt-1.3-1.rockspec b/rockspec/bcrypt-1.3-1.rockspec @@ -0,0 +1,30 @@ +package = "bcrypt" +version = "1.3-1" + +source = { + url = "git://github.com/mikejsavage/lua-bcrypt.git", + tag = "v1.3", +} + +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, + + install = { + lib = { + [ "bcrypt" ] = "bcrypt.so", + }, + }, +}