-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdown-scm-1.rockspec
108 lines (101 loc) · 2.14 KB
/
down-scm-1.rockspec
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
MODREV, SPECREV = 'scm', '-1'
maintainer_user = 'clpi'
license = 'MIT'
detailed = [[
Extensibility of org, comfort of markdown, for everyone
]]
desc = [[
Extensibility of org, comfort of markdown, for everyone
]]
labels = {
'wiki',
'neovim',
'note',
'capture',
'obsidian',
'org',
'markdown',
'vim',
'nvim',
'telekasten',
'plugin',
'org-mode',
}
summary = 'Extensibility of org, comfort of markdown, for everyone'
rockspec_format = '3.0'
version = MODREV .. SPECREV
branch = 'master'
tag = 'v0.1.1-alpha'
package_name = 'down.lua'
github_url = 'https://github.com/' .. maintainer .. '/' .. package_name .. '.git'
github_wiki_url = 'https://github.com/' .. maintainer .. '/' .. package_name .. '/wiki'
github_issues_url = 'https://github.com/' .. maintainer .. '/' .. package_name .. '/issues'
github_git_url = 'git://github.com/' .. maintainer .. '/' .. package_name .. '.git'
maintainer_url = 'https://github.com/' .. maintainer_user
maintainer_email = '[email protected]'
homepage = 'https://down.cli.st'
maintainer = 'Chris Pecunies <' .. maintainer_email .. '>'
source = {
url = github_url,
branch = branch,
homepage = homepage,
version = version,
tag = version,
}
description = {
homepage = homepage,
package = package_name,
issues_url = github_issues_url,
version = version,
detailed = detailed,
description = desc,
summary = summary,
url = github_url,
labels = labels,
maintainer = maintainer,
}
if MODREV == 'scm' then
source = {
url = github_git_url,
branch = branch,
homepage = homepage,
version = version,
tag = nil,
}
end
dependencies = {
'lua == 5.4',
'nvim-nio ~> 1.7',
'plenary.nvim == 0.1.4',
'nui.nvim == 0.3.0',
}
test_dependencies = {
'nlua',
'nvim-treesitter == 0.9.2',
}
test = {
type = 'command',
command = 'make test',
}
--
deploy = {
wrap_bin_scripts = true,
}
build = {
type = 'builtin',
build_pass = false,
modules = {},
install = {
bin = {
downls = './scripts/bin/down-lsp.sh',
down_lsp = './scripts/bin/down-lsp',
down = './scripts/bin/down',
},
},
copy_directories = {
'queries',
'plugin',
'doc',
},
}
--vim:ft=lua