Skip to content

Commit 514e248

Browse files
committed
Add 0.0.5 rockspec
1 parent e678942 commit 514e248

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

rockspecs/fluent-0.0.5-0.rockspec

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
rockspec_format = "3.0"
2+
package = "fluent"
3+
version = "0.0.5-0"
4+
5+
source = {
6+
url = "git://github.com/alerque/fluent-lua.git",
7+
tag = "v0.0.5"
8+
}
9+
10+
description = {
11+
summary = "Lua implementation of Project Fluent",
12+
detailed = [[
13+
A Lua port of Project Fluent, a localization paradigm designed to unleash
14+
the entire expressive power of natural language translations.
15+
]],
16+
license = "MIT",
17+
homepage = "https://github.com/alerque/fluent-lua",
18+
issues_url = "https://github.com/alerque/fluent-lua/issues",
19+
maintainer = "Caleb Maclennan <[email protected]>",
20+
labels = { "i18n" }
21+
}
22+
23+
dependencies = {
24+
"lua",
25+
"cldr",
26+
"luaepnf",
27+
"penlight"
28+
}
29+
30+
build = {
31+
type = "builtin",
32+
modules = {
33+
["fluent.init"] = "fluent/init.lua",
34+
["fluent.messages"] = "fluent/messages.lua",
35+
["fluent.parser"] = "fluent/parser.lua",
36+
["fluent.resource"] = "fluent/resource.lua",
37+
["fluent.syntax"] = "fluent/syntax.lua"
38+
}
39+
}

0 commit comments

Comments
 (0)