diff options
Diffstat (limited to 'lfw/rocks/md5/1.1.2-1/md5-1.1.2-1.rockspec')
-rw-r--r-- | lfw/rocks/md5/1.1.2-1/md5-1.1.2-1.rockspec | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/lfw/rocks/md5/1.1.2-1/md5-1.1.2-1.rockspec b/lfw/rocks/md5/1.1.2-1/md5-1.1.2-1.rockspec new file mode 100644 index 00000000..66267018 --- /dev/null +++ b/lfw/rocks/md5/1.1.2-1/md5-1.1.2-1.rockspec | |||
@@ -0,0 +1,39 @@ | |||
1 | package = "MD5" | ||
2 | version = "1.1.2-1" | ||
3 | source = { | ||
4 | url = "" | ||
5 | } | ||
6 | description = { | ||
7 | summary = "Basic cryptographic library", | ||
8 | detailed = [[ | ||
9 | MD5 offers basic cryptographic facilities for Lua 5.1: | ||
10 | a hash (digest) function, a pair crypt/decrypt based on MD5 and CFB, | ||
11 | and a pair crypt/decrypt based on DES with 56-bit keys. | ||
12 | ]], | ||
13 | license = "MIT/X11", | ||
14 | homepage = "http://www.keplerproject.org/md5/" | ||
15 | } | ||
16 | dependencies = { | ||
17 | "lua >= 5.1" | ||
18 | } | ||
19 | build = { | ||
20 | type = "make", | ||
21 | variables = { | ||
22 | LUA_VERSION_NUM="501", | ||
23 | }, | ||
24 | build_variables = { | ||
25 | LIB_OPTION = "$(LIBFLAG)", | ||
26 | CFLAGS = "$(CFLAGS) -I$(LUA_INCDIR)", | ||
27 | }, | ||
28 | install_variables = { | ||
29 | LUA_LIBDIR = "$(LIBDIR)", | ||
30 | LUA_DIR = "$(LUADIR)" | ||
31 | }, | ||
32 | platforms = { | ||
33 | win32 = { | ||
34 | build_variables = { | ||
35 | LUA_LIB = "$(LUA_LIBDIR)\\lua5.1.lib" | ||
36 | } | ||
37 | } | ||
38 | } | ||
39 | } | ||