commit 0ca14c0a50caf00764f301343e505a465ddf783d
parent f52283ce350f5247997e5ff38d2ddf69517b5560
Author: Michael Savage <mikejsavage@gmail.com>
Date: Sun, 17 Nov 2013 12:42:37 +0000
Add 1.0 rockspec
Diffstat:
1 file changed, 30 insertions(+), 0 deletions(-)
diff --git a/rockspec/bcrypt-1.0-1.rockspec b/rockspec/bcrypt-1.0-1.rockspec
@@ -0,0 +1,30 @@
+package = "bcrypt"
+version = "scm-1"
+
+source = {
+ url = "git://github.com/mikejsavage/lua-bcrypt.git",
+ tag = "v1.0",
+}
+
+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",
+ },
+ },
+}