From cce37bed28143a353fb99b5c64225804b5b83285 Mon Sep 17 00:00:00 2001 From: Jony Date: Wed, 23 Sep 2020 09:37:01 -0700 Subject: [PATCH] meson: copy vim files to neovim's runtime dir --- srcpkgs/meson/template | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template index 2c1bbbc74f6..1aae361ffb0 100644 --- a/srcpkgs/meson/template +++ b/srcpkgs/meson/template @@ -1,7 +1,7 @@ # Template file for 'meson' pkgname=meson version=0.55.3 -revision=1 +revision=2 archs=noarch build_style=python3-module hostmakedepends="python3-devel python3-setuptools" @@ -28,6 +28,9 @@ post_install() { vmkdir usr/share/vim/vimfiles cp -rt ${DESTDIR}/usr/share/vim/vimfiles data/syntax-highlighting/vim/*/ + vmkdir usr/share/nvim/runtime + cp -rt ${DESTDIR}/usr/share/nvim/runtime data/syntax-highlighting/vim/*/ + vinstall data/syntax-highlighting/emacs/meson.el 644 usr/share/emacs/site-lisp vinstall data/shell-completions/zsh/_meson 644 usr/share/zsh/site-functions }