Commit 4630a6a8 authored by Assaf Inbal's avatar Assaf Inbal Committed by Peter Korsgaard
Browse files

luacrypto: New package



LuaCrypto provides a Lua frontend to the OpenSSL cryptographic library.

[Peter: fix file header]
Signed-off-by: default avatarAssaf Inbal <shmuelzon@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 1286135a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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"
+12 −0
Original line number Diff line number Diff line
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
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# 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))