commit 41bf8d90a4cf78ebc8bc8bc8bcae78a124c28bf0
parent 6f3693cd6b0b2e014e52cbdb70adfd39feec1ddc
Author: Michael Savage <mikejsavage@gmail.com>
Date: Sat, 14 Feb 2015 14:03:28 +0000
Add v1.0 rockspec
Diffstat:
1 file changed, 34 insertions(+), 0 deletions(-)
diff --git a/rockspec/symmetric-1.0-1.rockspec b/rockspec/symmetric-1.0-1.rockspec
@@ -0,0 +1,34 @@
+package = "symmetric"
+version = "1.0-1"
+
+source = {
+ url = "git://github.com/mikejsavage/symmetric.git",
+ tag = "v1.0",
+}
+
+description = {
+ summary = "A Lua wrapper for symmetric cryptography, using libsodium's secret box"
+ homepage = "http://github.com/mikejsavage/symmetric",
+ license = "MIT",
+ maintainer = "Mike Savage",
+}
+
+dependencies = {
+ "lua >= 5.1",
+}
+
+build = {
+ type = "make",
+
+ install_pass = false,
+
+ build_variables = {
+ LUA_INCDIR = "$(LUA_INCDIR)",
+ },
+
+ install = {
+ lib = {
+ [ "symmetric" ] = "symmetric.so",
+ },
+ },
+}