aboutsummaryrefslogtreecommitdiff
path: root/lfw/rocks/md5/1.1.2-1/md5-1.1.2-1.rockspec
diff options
context:
space:
mode:
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.rockspec39
1 files changed, 0 insertions, 39 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
deleted file mode 100644
index 66267018..00000000
--- a/lfw/rocks/md5/1.1.2-1/md5-1.1.2-1.rockspec
+++ /dev/null
@@ -1,39 +0,0 @@
1package = "MD5"
2version = "1.1.2-1"
3source = {
4 url = ""
5}
6description = {
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}
16dependencies = {
17 "lua >= 5.1"
18}
19build = {
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}