mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
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:
parent
1286135afc
commit
4630a6a847
@ -317,6 +317,7 @@ source "package/coxpcall/Config.in"
|
|||||||
source "package/lbase64/Config.in"
|
source "package/lbase64/Config.in"
|
||||||
source "package/luabitop/Config.in"
|
source "package/luabitop/Config.in"
|
||||||
source "package/luacjson/Config.in"
|
source "package/luacjson/Config.in"
|
||||||
|
source "package/luacrypto/Config.in"
|
||||||
source "package/luaexpat/Config.in"
|
source "package/luaexpat/Config.in"
|
||||||
source "package/luafilesystem/Config.in"
|
source "package/luafilesystem/Config.in"
|
||||||
source "package/luasocket/Config.in"
|
source "package/luasocket/Config.in"
|
||||||
|
12
package/luacrypto/Config.in
Normal file
12
package/luacrypto/Config.in
Normal 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
|
14
package/luacrypto/luacrypto.mk
Normal file
14
package/luacrypto/luacrypto.mk
Normal 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))
|
Loading…
x
Reference in New Issue
Block a user