commit 25ae0eb65b456402728831b392cfdda7ff923612
parent bb118a3975c9a2bf79161cd683d2bb83d5f3635f
Author: Michael Savage <mikejsavage@gmail.com>
Date: Wed, 20 May 2020 10:20:53 +0300
Add 2.1-5 rockspec
Diffstat:
1 file changed, 34 insertions(+), 0 deletions(-)
diff --git a/rockspec/bcrypt-2.1-5.rockspec b/rockspec/bcrypt-2.1-5.rockspec
@@ -0,0 +1,34 @@
+package = "bcrypt"
+version = "2.1-5"
+
+source = {
+ url = "git://github.com/mikejsavage/lua-bcrypt.git",
+ tag = "v2.1-5",
+}
+
+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",
+ },
+ },
+}