lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs | README

commit a48c6789b3078c6a752eefe789d258fd4dce2243
parent 6bd1042d5d62a3369f2679e71329d94ce9a72c5f
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sun, 12 Jul 2020 12:59:04 +0300

Add 2.1-6 rockspec

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

diff --git a/rockspec/bcrypt-2.1-6.rockspec b/rockspec/bcrypt-2.1-6.rockspec @@ -0,0 +1,34 @@ +package = "bcrypt" +version = "2.1-6" + +source = { + url = "git://github.com/mikejsavage/lua-bcrypt.git", + tag = "v2.1-6", +} + +description = { + summary = "A Lua wrapper for bcrypt", + homepage = "http://github.com/mikejsavage/lua-bcrypt", + license = "ISC", + maintainer = "Mike Savage", +} + +dependencies = { + "lua >= 5.1", +} + +build = { + type = "make", + + install_pass = false, + + build_variables = { + LUA_INCDIR = "$(LUA_INCDIR)", + }, + + install = { + lib = { + [ "bcrypt" ] = "bcrypt.so", + }, + }, +}