-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrockspec.in
More file actions
36 lines (33 loc) · 1013 Bytes
/
Copy pathrockspec.in
File metadata and controls
36 lines (33 loc) · 1013 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
package = 'lua-CodeGen'
version = '@version@-@rev@'
source = {
url = 'http://cloud.github.com/downloads/fperrad/lua-CodeGen/lua-codegen-@version@.tar.gz',
md5 = '@md5@',
dir = 'lua-CodeGen-@version@',
}
description = {
summary = "a template engine",
detailed = [[
lua-CodeGen is a "safe" template engine.
lua-CodeGen enforces a strict Model-View separation.
lua-CodeGen allows to split template in small chunk,
and encourages the reuse of them by inheritance.
lua-CodeGen is not dedicated to HTML,
it could generate any kind of textual code.
]],
homepage = 'http://fperrad.github.com/lua-CodeGen',
maintainer = 'Francois Perrad',
license = 'MIT/X11'
}
dependencies = {
'lua >= 5.1',
'lua-testmore >= 0.2.3',
}
build = {
type = 'none',
modules = {
['CodeGen'] = 'src/CodeGen.lua',
['CodeGen.Graph'] = 'src/CodeGen/Graph.lua',
},
copy_directories = { 'doc', 'test' },
}