-
-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathrusile.rockspec.in
More file actions
31 lines (27 loc) · 724 Bytes
/
rusile.rockspec.in
File metadata and controls
31 lines (27 loc) · 724 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
-- @ROCKSPECWARNING@
rockspec_format = "3.0"
package = "ru@PACKAGE_NAME@"
version = "dev-@ROCKREV@"
source = {
url = "git+https://github.com/sile-typesetter/sile.git",
branch = "master",
}
description = {
summary = "Lua bridge to Rust components of SILE",
detailed = [[The Rusty bits of SILE made available to Lua]],
license = "MIT",
homepage = "https://github.com/sile-typesetter/sile",
issues_url = "https://github.com/sile-typesetter/sile/issues",
maintainer = "Caleb Maclennan <caleb@alerque.com>",
labels = { "typesetting" },
}
dependencies = {
"lua >= 5.1",
"luarocks-build-rust-mlua >= 0.2.3-1",
}
build = {
type = "rust-mlua",
modules = {
"ru@PACKAGE_NAME@",
},
}