Skip to content

Commit

Permalink
package for rockspecs
Browse files Browse the repository at this point in the history
  • Loading branch information
Alloyed committed Sep 11, 2017
1 parent 998e216 commit ba376ce
Show file tree
Hide file tree
Showing 10 changed files with 118 additions and 769 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
test.lua
3 changes: 3 additions & 0 deletions bin/lua-lsp
@@ -0,0 +1,3 @@
#!/usr/bin/env lua
local main = require 'lua-lsp.loop'
main(...)
31 changes: 31 additions & 0 deletions lua-lsp-scm-1.rockspec
@@ -0,0 +1,31 @@
package = "lua-lsp"
version = "scm-1"
source = {
url = "git://github.com/Alloyed/lua-lsp"
}
description = {
homepage = "https://github.com/Alloyed/lua-lsp",
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.4",
"dkjson",
"lpeglabel"
}
build = {
type = "builtin",
modules = {
["lua-lsp.analyze"] = "lua-lsp/analyze.lua",
["lua-lsp.log"] = "lua-lsp/log.lua",
["lua-lsp.lua-parser.parser"] = "lua-lsp/lua-parser/parser.lua",
["lua-lsp.lua-parser.pp"] = "lua-lsp/lua-parser/pp.lua",
["lua-lsp.lua-parser.scope"] = "lua-lsp/lua-parser/scope.lua",
["lua-lsp.lua-parser.validator"] = "lua-lsp/lua-parser/validator.lua",
["lua-lsp.rpc"] = "lua-lsp/rpc.lua",
["lua-lsp.unicode"] = "lua-lsp/unicode.lua",
["lua-lsp"] = "lua-lsp.lua",
},
install = {
bin = {"bin/lua-lsp"}
},
}

0 comments on commit ba376ce

Please sign in to comment.