~ubuntu-branches/ubuntu/quantal/genometools/quantal-backports

« back to all changes in this revision

Viewing changes to src/external/md5-1.1.2/rockspec/md5-1.1.1-1.rockspec

  • Committer: Package Import Robot
  • Author(s): Sascha Steinbiss
  • Date: 2012-07-09 14:10:23 UTC
  • Revision ID: package-import@ubuntu.com-20120709141023-juuu4spm6chqsf9o
Tags: upstream-1.4.1
ImportĀ upstreamĀ versionĀ 1.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package = "MD5"
 
2
version = "1.1.1-1"
 
3
source = {
 
4
   url = "http://luaforge.net/frs/download.php/2746/md5-1.1.1.tar.gz"
 
5
}
 
6
description = {
 
7
   summary = "Basic cryptographic library",
 
8
   detailed = [[
 
9
      MD5 offers basic cryptographic facilities for Lua 5.1: a hash
 
10
      (digest) function, and a pair crypt/decrypt.
 
11
   ]],
 
12
   license = "MIT/X11",
 
13
   homepage = "http://www.keplerproject.org/md5/"
 
14
}
 
15
dependencies = {
 
16
   "lua >= 5.1"
 
17
}
 
18
build = {
 
19
   type = "make",
 
20
   variables = {
 
21
      LUA_VERSION_NUM="501",
 
22
   },
 
23
   build_variables = {
 
24
      LIB_OPTION = "$(LIBFLAG)",
 
25
      CFLAGS = "$(CFLAGS) -I$(LUA_INCDIR)",
 
26
   },
 
27
   install_variables = {
 
28
      LUA_LIBDIR = "$(LIBDIR)",
 
29
      LUA_DIR = "$(LUADIR)"
 
30
   }
 
31
}