lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit 09a94f7f214d82ab92316c0dbbccc9e98cf8f8c5
parent b82929a3c7be0866f8d6faf2103e2deaa0067e11
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Wed, 11 Dec 2013 19:49:05 +0000

Add v1.2 rockspec

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

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