aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/nvim-treesitter-luarocks.template
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/nvim-treesitter-luarocks.template')
-rw-r--r--contrib/nvim-treesitter-luarocks.template41
1 files changed, 0 insertions, 41 deletions
diff --git a/contrib/nvim-treesitter-luarocks.template b/contrib/nvim-treesitter-luarocks.template
deleted file mode 100644
index 8109f5f2b..000000000
--- a/contrib/nvim-treesitter-luarocks.template
+++ /dev/null
@@ -1,41 +0,0 @@
-local git_ref = '$git_ref'
-local modrev = '$modrev'
-local specrev = '-1'
-
-local repo_url = '$repo_url'
-
-rockspec_format = '3.0'
-package = '$package'
-version = modrev .. specrev
-
-description = {
- summary = 'Nvim Treesitter configurations and abstraction layer',
- detailed = $detailed_description,
- labels = { 'neovim' },
- homepage = 'https://github.com/nvim-treesitter/nvim-treesitter',
- license = 'Apache-2.0',
-}
-
-dependencies = {
- 'lua >= 5.1',
-}
-
--- source = file:///.
-
-source = {
- url = repo_url .. '/archive/' .. git_ref .. '.zip',
- dir = '$repo_name-' .. '$archive_dir_suffix',
-}
-
-build = {
- type = 'make',
- build_pass = false,
- install_variables = {
- INST_PREFIX='$(PREFIX)',
- INST_BINDIR='$(BINDIR)',
- INST_LIBDIR='$(LIBDIR)',
- INST_LUADIR='$(LUADIR)',
- INST_CONFDIR='$(CONFDIR)',
- },
- copy_directories = $copy_directories,
-}