lua-symmetric

Symmetric crypto for Lua
Log | Files | Refs

commit af87432fd6ac524df4556274331f237339d5950c
parent 690fc5b4e9908183854fc99c2f7e26b4959c371b
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Thu, 24 Dec 2015 15:13:14 +0000

Fix rockspec shenanigans

Diffstat:
rockspec/symmetric-1.0-2.rockspec | 34----------------------------------
rockspec/symmetric-1.1-1.rockspec | 34++++++++++++++++++++++++++++++++++
rockspec/symmetric-1.1-2.rockspec | 34++++++++++++++++++++++++++++++++++
3 files changed, 68 insertions(+), 34 deletions(-)

diff --git a/rockspec/symmetric-1.0-2.rockspec b/rockspec/symmetric-1.0-2.rockspec @@ -1,34 +0,0 @@ -package = "symmetric" -version = "1.0-2" - -source = { - url = "git://github.com/mikejsavage/lua-symmetric.git", - tag = "v1.0-2", -} - -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", - }, - }, -} diff --git a/rockspec/symmetric-1.1-1.rockspec b/rockspec/symmetric-1.1-1.rockspec @@ -0,0 +1,34 @@ +package = "symmetric" +version = "1.1-1" + +source = { + url = "git://github.com/mikejsavage/lua-symmetric.git", + tag = "v1.1", +} + +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", + }, + }, +} diff --git a/rockspec/symmetric-1.1-2.rockspec b/rockspec/symmetric-1.1-2.rockspec @@ -0,0 +1,34 @@ +package = "symmetric" +version = "1.1-2" + +source = { + url = "git://github.com/mikejsavage/lua-symmetric.git", + tag = "v1.1-2", +} + +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", + }, + }, +}