luacrypto: New package

LuaCrypto provides a Lua frontend to the OpenSSL cryptographic library.

[Peter: fix file header]
Signed-off-by: Assaf Inbal <shmuelzon@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Assaf Inbal 2013-06-17 09:16:25 +03:00 committed by Peter Korsgaard
parent 1286135afc
commit 4630a6a847
3 changed files with 27 additions and 0 deletions

View File

@ -317,6 +317,7 @@ source "package/coxpcall/Config.in"
source "package/lbase64/Config.in"
source "package/luabitop/Config.in"
source "package/luacjson/Config.in"
source "package/luacrypto/Config.in"
source "package/luaexpat/Config.in"
source "package/luafilesystem/Config.in"
source "package/luasocket/Config.in"

View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_LUACRYPTO
bool "luacrypto"
select BR2_PACKAGE_OPENSSL
select BR2_PACKAGE_LUASOCKET
help
LuaCrypto provides a Lua frontend to the OpenSSL cryptographic
library.
The OpenSSL features that are currently exposed are digests (MD5,
SHA-1, HMAC, and more) and crypto-grade random number generators
communication.
http://luacrypto.luaforge.net

View File

@ -0,0 +1,14 @@
################################################################################
#
# luacrypto
#
################################################################################
LUACRYPTO_VERSION = 0.3.2
LUACRYPTO_SITE = http://github.com/mkottman/luacrypto/tarball/$(LUACRYPTO_VERSION)
LUACRYPTO_LICENSE = MIT
LUACRYPTO_LICENSE_FILES = COPYING
LUACRYPTO_DEPENDENCIES = lua openssl
LUACRYPTO_CONF_OPT = "-DLUA_LIBRARIES=\"$(STAGING_DIR)/usr/lib/liblua.so\""
$(eval $(cmake-package))