-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcldr-dev-0.rockspec
More file actions
31 lines (27 loc) · 739 Bytes
/
Copy pathcldr-dev-0.rockspec
File metadata and controls
31 lines (27 loc) · 739 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
rockspec_format = "3.0"
package = "cldr"
version = "dev-0"
source = {
url = "git+https://github.com/alerque/cldr-lua.git",
branch = "master",
}
description = {
summary = "Lua interface to Unicode CLDR data",
detailed = [[Unicode CLDR (Common Locale Data Repository) data and Lua interface.]],
license = "MIT/ICU",
homepage = "https://github.com/alerque/cldr-lua",
issues_url = "https://github.com/alerque/cldr-lua/issues",
maintainer = "Caleb Maclennan <caleb@alerque.com>",
labels = { "i18n", "unicode" },
}
dependencies = {
"lua >= 5.1",
"penlight",
}
build = {
type = "builtin",
modules = {
["cldr.init"] = "cldr/init.lua",
["cldr.data.locales"] = "cldr/data/locales.lua",
},
}