lua-arc4random

Cryptographically secure PRNG for Lua
Log | Files | Refs | README

commit 11a6e7256520720db556e432f33a208d5d10f6a8
parent 18b80940569e1ea9e2d2ba7dbe344fb95c592229
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sun, 12 Jul 2020 13:22:46 +0300

Add 1.4-1 rockspec

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

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