lua-arc4random

Cryptographically secure PRNG for Lua
Log | Files | Refs

commit f501dba238dfa6cbc3dc91f1b624dcebe95d82ab
parent 2fc1c3189a77ee0e448ef0cb43bf45eb396447a9
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat, 14 Feb 2015 13:34:45 +0000

Add v1.1 rockspec

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

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