commit 4679b73f8357073e5612634e08afb2a6629102e8
parent 61b491da73c820d59a3180cd2c9a50d84374e326
Author: Michael Savage <mikejsavage@gmail.com>
Date: Tue, 31 Jul 2012 13:19:21 +0100
Add rockspec
Diffstat:
1 file changed, 33 insertions(+), 0 deletions(-)
diff --git a/rockspec/bcrypt-scm-1.rockspec b/rockspec/bcrypt-scm-1.rockspec
@@ -0,0 +1,33 @@
+package = "bcrypt"
+version = "scm-1"
+
+source = {
+ url = "git://github.com/mikejsavage/luabcrypt.git",
+}
+
+description = {
+ summary = "A Lua wrapper for bcrypt",
+ detailed = [[
+ Flea is a minimal web framework which aims to be in the spirit
+ of Lua by only providing the basics.
+ ]],
+ homepage = "http://github.com/mikejsavage/luabcrypt",
+ license = "MIT",
+ maintainer = "Mike Savage",
+}
+
+dependencies = {
+ "lua ~> 5.1",
+}
+
+build = {
+ type = "make",
+
+ install_pass = false,
+
+ install = {
+ lib = {
+ [ "bcrypt" ] = "bcrypt.so",
+ },
+ },
+}