-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
fluent.rockspec.in
37 lines (33 loc) · 981 Bytes
/
fluent.rockspec.in
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
rockspec_format = "3.0"
package = "fluent"
version = "@SEMVER@-@ROCKREV@"
source = {
url = "git+https://github.com/alerque/fluent-lua.git",
tag = "@TAG@"
}
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"
}
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"
}
}