-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
decasify.rockspec.in
34 lines (30 loc) · 998 Bytes
/
decasify.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
rockspec_format = "3.0"
package = "@PACKAGE_NAME@"
version = "@SEMVER@-@ROCKREV@"
source = {
url = "git+https://github.com/alerque/decasify.git",
tag = "@TAG@",
}
description = {
summary = "Lua C module built from the Rust decasify crate to cast strings to title-case according to locale specific style guides including Turkish support",
detailed = [[
A Lua library exposed as a C module built from the Rust decasify crate.
Provides casing functions for long strings (not just individual words)
supporting the grammatical style guides of various locales including Turkish.
]],
license = "LGPL-3.0-only",
homepage = "https://github.com/alerque/decasify",
issues_url = "https://github.com/alerque/decasify/issues",
maintainer = "Caleb Maclennan <[email protected]>",
labels = { "i18n" },
}
dependencies = {
"lua >= 5.1",
"luarocks-build-rust-mlua >= 0.2.3-1",
}
build = {
type = "rust-mlua",
modules = {
"@PACKAGE_NAME@",
},
}