commit a9ce0b348972c6111a6f66e79277496fd8fe4dac
parent 93a9708fabea8b1acbd1ec93d3bb6cb373c423ba
Author: Michael Savage <mikejsavage@gmail.com>
Date: Thu, 13 Apr 2017 23:58:41 +0300
Add v1.1-4 rockspec
Diffstat:
1 file changed, 34 insertions(+), 0 deletions(-)
diff --git a/rockspec/symmetric-1.1-4.rockspec b/rockspec/symmetric-1.1-4.rockspec
@@ -0,0 +1,34 @@
+package = "symmetric"
+version = "1.1-4"
+
+source = {
+ url = "git://github.com/mikejsavage/lua-symmetric.git",
+ tag = "v1.1-4",
+}
+
+description = {
+ summary = "A Lua wrapper for symmetric cryptography, using libsodium's secret box",
+ homepage = "http://github.com/mikejsavage/lua-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",
+ },
+ },
+}