lua-bcrypt

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

bcrypt-scm-1.rockspec (476B)


      1 package = "bcrypt"
      2 version = "scm-1"
      3 
      4 source = {
      5 	url = "git://github.com/mikejsavage/lua-bcrypt.git",
      6 }
      7 
      8 description = {
      9 	summary = "A Lua wrapper for bcrypt",
     10 	homepage = "http://github.com/mikejsavage/lua-bcrypt",
     11 	license = "ISC",
     12 	maintainer = "Mike Savage",
     13 }
     14 
     15 dependencies = {
     16 	"lua >= 5.1",
     17 }
     18 
     19 build = {
     20 	type = "make",
     21 
     22 	install_pass = false,
     23 
     24 	build_variables = {
     25 		LUA_INCDIR = "$(LUA_INCDIR)",
     26 	},
     27 
     28 	install = {
     29 		lib = {
     30 			[ "bcrypt" ] = "bcrypt.so",
     31 		},
     32 	},
     33 }