-
Notifications
You must be signed in to change notification settings - Fork 63
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
1 parent
2a98633
commit 846d71d
Showing
1 changed file
with
31 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,31 @@ | ||
package = "MD5" | ||
version = "1.3-1" | ||
source = { | ||
url = "https://github.com/keplerproject/md5/archive/1.3.tar.gz", | ||
md5 = "17b773591141091a4104d5183aad134b", | ||
dir = "md5-1.3", | ||
} | ||
description = { | ||
summary = "Checksum library", | ||
detailed = [[MD5 offers checksum facilities for Lua 5.X: a hash (digest) function, a pair crypt/decrypt based on MD5 and CFB, and a pair crypt/decrypt based on DES with 56-bit keys.]], | ||
license = "MIT/X11", | ||
homepage = "http://keplerproject.github.io/md5/", | ||
} | ||
dependencies = { | ||
"lua >= 5.0" | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
md5 = "src/md5.lua", | ||
["md5.core"] = { | ||
sources = { "src/compat-5.2.c", "src/md5.c", "src/md5lib.c", }, | ||
incdirs = { "src/", }, | ||
}, | ||
des56 = { | ||
sources = { "src/compat-5.2.c", "src/des56.c", "src/ldes56.c", }, | ||
incdirs = { "src/", }, | ||
}, | ||
}, | ||
copy_directories = { "doc", "tests", }, | ||
} |