lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit 290435d0710c8fa50f2bd8c3576e66cdf8f62965
parent cd0986ecf0b6994b983bc5c9e5a5a135fbb76448
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Tue, 10 Dec 2013 10:42:22 +0000

Add v1.1 rockspec

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

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