-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
decasify.sile.rockspec.in
34 lines (30 loc) · 1002 Bytes
/
decasify.sile.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@.sile"
version = "@SEMVER@-@ROCKREV@"
source = {
url = "git+https://github.com/alerque/decasify.git",
tag = "@TAG@",
}
description = {
summary = "SILE package wrapping decasify crate to cast strings to title-case according to locale specific style guides including Turkish support",
detailed = [[
A SILE package that wraps the decasify library into typesetting commands that can easily be used to re-case
prose content (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 <caleb@alerque.com>",
labels = { "i18n" },
}
dependencies = {
"lua >= 5.1",
"decasify",
}
build = {
type = "builtin",
modules = {
["sile.packages.decasify"] = "sile/decasify.lua",
},
}