Skip to content

Commit 9a03fdc

Browse files
author
philanc
committedApr 23, 2018
added rockspec for v0.10
1 parent 0eef70c commit 9a03fdc

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
 

‎luazen-0.10-1.rockspec

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
package = "luazen"
2+
version = "v0.10"
3+
source = {
4+
url = "git://github.com/philanc/luazen",
5+
branch = "v0.10",
6+
}
7+
description = {
8+
summary = "Simple compression, encoding and cryptographic functions.",
9+
detailed = [[
10+
A small library with various encoding functions (base58, base64),
11+
compression functions (BriefLZ, LZF), authenticated encryption (Morus, XChacha20/Poly1305, Norx),
12+
cryptographic hash (Blake2b), curve25519 and ed25519 functions,
13+
and legacy cryptographic functions (MD5, RC4).
14+
]],
15+
homepage = "https://github.com/philanc/luazen",
16+
license = "MIT",
17+
}
18+
supported_platforms = {
19+
"unix",
20+
}
21+
dependencies = {
22+
"lua >= 5.1"
23+
}
24+
build = {
25+
type = "builtin",
26+
modules = {
27+
luazen = {
28+
sources = {
29+
"src/base58.c",
30+
"src/base64.c",
31+
"src/blake2b.c",
32+
"src/blz.c",
33+
"src/chacha.c",
34+
"src/luazen.c",
35+
"src/lzf.c",
36+
"src/md5.c",
37+
"src/morus.c",
38+
"src/norx.c",
39+
"src/random.c",
40+
"src/rc4.c",
41+
"src/sha2.c",
42+
"src/x25519.c",
43+
"src/xor.c",
44+
},
45+
incdir = "src"
46+
},
47+
},
48+
copy_directories = { "test" },
49+
}
50+

0 commit comments

Comments
 (0)
Please sign in to comment.