commit 4696deb473b0d5018dfc8284027656e142cbf346
parent 829e07c7a24fed5657bad3c8e68b92ddd06264e5
Author: Michael Savage <mikejsavage@gmail.com>
Date: Tue, 25 Feb 2014 14:32:42 +0000
Add 1.3-2 rockspec
Diffstat:
1 file changed, 34 insertions(+), 0 deletions(-)
diff --git a/rockspec/bcrypt-1.3-2.rockspec b/rockspec/bcrypt-1.3-2.rockspec
@@ -0,0 +1,34 @@
+package = "bcrypt"
+version = "1.3-1"
+
+source = {
+ url = "git://github.com/mikejsavage/lua-bcrypt.git",
+ tag = "v1.3",
+}
+
+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,
+
+ build_variables = {
+ LUA_INCDIR = "$(LUA_INCDIR)",
+ },
+
+ install = {
+ lib = {
+ [ "bcrypt" ] = "bcrypt.so",
+ },
+ },
+}