lua-arc4random

Cryptographically secure PRNG for Lua
Log | Files | Refs

commit d579d5fdfe7561458005d45fa31345422f4b9694
parent 6fba0b49de5ef95af7fb5da653e64936486f860c
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat, 15 Aug 2015 11:30:45 +0100

Add v1.3 rockspec

Diffstat:
rockspec/arc4random-1.3-1.rockspec | 34++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+), 0 deletions(-)

diff --git a/rockspec/arc4random-1.3-1.rockspec b/rockspec/arc4random-1.3-1.rockspec @@ -0,0 +1,34 @@ +package = "arc4random" +version = "1.3-1" + +source = { + url = "git://github.com/mikejsavage/lua-arc4random.git", + tag = "v1.3", +} + +description = { + summary = "A Lua wrapper around OpenBSD's arc4random", + homepage = "http://github.com/mikejsavage/lua-arc4random", + license = "MIT", + maintainer = "Mike Savage", +} + +dependencies = { + "lua >= 5.1", +} + +build = { + type = "make", + + install_pass = false, + + build_variables = { + LUA_INCDIR = "$(LUA_INCDIR)", + }, + + install = { + lib = { + [ "arc4random" ] = "arc4random.so", + }, + }, +}