comparison luabuild/rockfiles/penlight-1.0.0-1.rockspec @ 1311:8483375b51c2

<GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
author HackBot
date Wed, 09 Jan 2013 08:36:05 +0000
parents
children
comparison
equal deleted inserted replaced
1310:5d58825150ae 1311:8483375b51c2
1 package = "penlight"
2 version = "1.0.0-1"
3
4 source = {
5 dir = "penlight-1.0.0",
6 url = "http://stevedonovan.github.com/files/penlight-1.0.0-core.zip",
7 }
8
9 description = {
10 summary = "Lua utility libraries loosely based on the Python standard libraries",
11 homepage = "http://stevedonovan.github.com/Penlight",
12 license = "MIT/X11",
13 maintainer = "steve.j.donovan@gmail.com",
14 homepage = "http://stevedonovan.github.com/Penlight/api/index.html",
15 detailed = [[
16 Penlight is a set of pure Lua libraries for making it easier to work with common tasks like
17 iterating over directories, reading configuration files and the like. Provides functional operations
18 on tables and sequences.
19 ]]
20 }
21
22 dependencies = {
23 "luafilesystem",
24 }
25
26 build = {
27 type = "builtin",
28 modules = {
29 ["pl.strict"] = "lua/pl/strict.lua",
30 ["pl.dir"] = "lua/pl/dir.lua",
31 ["pl.operator"] = "lua/pl/operator.lua",
32 ["pl.input"] = "lua/pl/input.lua",
33 ["pl.config"] = "lua/pl/config.lua",
34 ["pl.seq"] = "lua/pl/seq.lua",
35 ["pl.stringio"] = "lua/pl/stringio.lua",
36 ["pl.text"] = "lua/pl/text.lua",
37 ["pl.test"] = "lua/pl/test.lua",
38 ["pl.tablex"] = "lua/pl/tablex.lua",
39 ["pl.app"] = "lua/pl/app.lua",
40 ["pl.stringx"] = "lua/pl/stringx.lua",
41 ["pl.lexer"] = "lua/pl/lexer.lua",
42 ["pl.utils"] = "lua/pl/utils.lua",
43 ["pl.sip"] = "lua/pl/sip.lua",
44 ["pl.permute"] = "lua/pl/permute.lua",
45 ["pl.pretty"] = "lua/pl/pretty.lua",
46 ["pl.class"] = "lua/pl/class.lua",
47 ["pl.List"] = "lua/pl/List.lua",
48 ["pl.data"] = "lua/pl/data.lua",
49 ["pl.Date"] = "lua/pl/Date.lua",
50 ["pl.init"] = "lua/pl/init.lua",
51 ["pl.luabalanced"] = "lua/pl/luabalanced.lua",
52 ["pl.comprehension"] = "lua/pl/comprehension.lua",
53 ["pl.path"] = "lua/pl/path.lua",
54 ["pl.array2d"] = "lua/pl/array2d.lua",
55 ["pl.func"] = "lua/pl/func.lua",
56 ["pl.lapp"] = "lua/pl/lapp.lua",
57 ["pl.file"] = "lua/pl/file.lua",
58 ['pl.template'] = "lua/pl/template.lua",
59 ["pl.Map"] = "lua/pl/Map.lua",
60 ["pl.MultiMap"] = "lua/pl/MultiMap.lua",
61 ["pl.OrderedMap"] = "lua/pl/OrderedMap.lua",
62 ["pl.Set"] = "lua/pl/Set.lua",
63 ["pl.xml"] = "lua/pl/xml.lua",
64 ["pl.platf.luajava"] = "lua/pl/platf/luajava.lua"
65 },
66 }
67