-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfluent-dev-0.rockspec
45 lines (39 loc) · 1.02 KB
/
fluent-dev-0.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
rockspec_format = "3.0"
package = "fluent"
version = "dev-0"
source = {
url = "git+https://github.com/alerque/fluent-lua.git",
branch = "master",
}
description = {
summary = "Lua implementation of Project Fluent",
detailed = [[A Lua port of Project Fluent, a localization paradigm designed to unleash
the entire expressive power of natural language translations.]],
license = "MIT",
homepage = "https://github.com/alerque/fluent-lua",
issues_url = "https://github.com/alerque/fluent-lua/issues",
maintainer = "Caleb Maclennan <caleb@alerque.com>",
labels = { "i18n" },
}
dependencies = {
"lua >= 5.1",
"cldr",
"luaepnf",
"penlight",
}
test_dependencies = {
"busted",
}
test = {
type = "busted",
}
build = {
type = "builtin",
modules = {
["fluent.init"] = "fluent/init.lua",
["fluent.messages"] = "fluent/messages.lua",
["fluent.parser"] = "fluent/parser.lua",
["fluent.resource"] = "fluent/resource.lua",
["fluent.syntax"] = "fluent/syntax.lua",
},
}