File: moses-1.3-1.rockspec

package info (click to toggle)
lua-moses 2.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 764 kB
  • sloc: makefile: 2
file content (25 lines) | stat: -rw-r--r-- 776 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package = "moses"
version = "1.3-1"
source = {
   url = "https://github.com/Yonaba/Moses/archive/Moses-1.3.0.tar.gz",
   dir = "Moses-Moses-1.3.0"
}
description = {
   summary = "Utility library for functional programming in Lua",
   detailed = [[
      A utility library provinding handy resources for common programming tasks and support for functional 
	  programming. It extends the built-in Lua table library, making easier operations on arrays, lists, 
	  collections and objects, through 85 weird, bizarre and odd functions.
   ]],
   homepage = "http://yonaba.github.com/Moses/",
   license = "MIT <http://www.opensource.org/licenses/mit-license.php>"
}
dependencies = {
   "lua >= 5.1"
}
build = {
   type = "builtin",
   modules = {
      moses = "moses.lua"
   }
}