-
Notifications
You must be signed in to change notification settings - Fork 5
/
yaml-1.1.2-1.rockspec
53 lines (49 loc) · 1.17 KB
/
yaml-1.1.2-1.rockspec
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package = "yaml"
version = "1.1.2-1"
source = {
url = 'git://github.com/lubyk/yaml',
tag = 'REL-1.1.2',
dir = 'yaml',
}
description = {
summary = "Very fast yaml parser based on libYAML by Kirill Simonov",
detailed = [[
This module is a Lua binding for Kirill Siminov's excellent LibYAML. LibYAML is generally considered to be the best C YAML 1.1 implementation.
Main features are:
- Fast and easy to use
- Based on proven code (libYAML)
- Support for table loops
- No external dependencies
Read the documentation at http://doc.lubyk.org/yaml.html.
]],
homepage = "http://doc.lubyk.org/yaml.html",
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.4",
"lub >= 1.0.3, < 2",
}
build = {
type = 'builtin',
modules = {
-- Plain Lua files
['yaml' ] = 'yaml/init.lua',
-- C module
['yaml.core' ] = {
sources = {
'src/api.c',
'src/b64.c',
'src/dumper.c',
'src/emitter.c',
'src/loader.c',
'src/lyaml.c',
'src/parser.c',
'src/reader.c',
'src/scanner.c',
'src/strtod.c',
'src/writer.c',
},
incdirs = {'src'},
},
},
}