-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
philanc
committed
Apr 23, 2018
1 parent
0eef70c
commit 9a03fdc
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package = "luazen" | ||
version = "v0.10" | ||
source = { | ||
url = "git://github.com/philanc/luazen", | ||
branch = "v0.10", | ||
} | ||
description = { | ||
summary = "Simple compression, encoding and cryptographic functions.", | ||
detailed = [[ | ||
A small library with various encoding functions (base58, base64), | ||
compression functions (BriefLZ, LZF), authenticated encryption (Morus, XChacha20/Poly1305, Norx), | ||
cryptographic hash (Blake2b), curve25519 and ed25519 functions, | ||
and legacy cryptographic functions (MD5, RC4). | ||
]], | ||
homepage = "https://github.com/philanc/luazen", | ||
license = "MIT", | ||
} | ||
supported_platforms = { | ||
"unix", | ||
} | ||
dependencies = { | ||
"lua >= 5.1" | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
luazen = { | ||
sources = { | ||
"src/base58.c", | ||
"src/base64.c", | ||
"src/blake2b.c", | ||
"src/blz.c", | ||
"src/chacha.c", | ||
"src/luazen.c", | ||
"src/lzf.c", | ||
"src/md5.c", | ||
"src/morus.c", | ||
"src/norx.c", | ||
"src/random.c", | ||
"src/rc4.c", | ||
"src/sha2.c", | ||
"src/x25519.c", | ||
"src/xor.c", | ||
}, | ||
incdir = "src" | ||
}, | ||
}, | ||
copy_directories = { "test" }, | ||
} | ||
|