diff --git a/community/neovim/PKGBUILD b/community/neovim/PKGBUILD index 544fe67ce..484d2f841 100644 --- a/community/neovim/PKGBUILD +++ b/community/neovim/PKGBUILD @@ -6,7 +6,7 @@ # - -DENABLE_LTO=OFF pkgname=neovim -pkgver=0.3.5 +pkgver=0.3.7 pkgrel=1 pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs' arch=('x86_64') @@ -14,13 +14,11 @@ url='https://neovim.io' license=('custom:neovim') depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm' 'luajit') makedepends=('cmake' 'ninja' 'lua51-mpack' 'lua51-lpeg' 'gperf') -optdepends=('python2-neovim: for Python 2 plugin support (see :help python)' - 'python-neovim: for Python 3 plugin support (see :help python)' +optdepends=('python-neovim: for Python 3 plugin support (see :help python)' 'xclip: for clipboard support (or xsel) (see :help clipboard)' 'xsel: for clipboard support (or xclip) (see :help clipboard)') source=(https://github.com/neovim/neovim/archive/v${pkgver}.tar.gz) -sha512sums=('8e7c14df59fdcb0eb03a2dbed5d56ae3b1eadb9aac805e69da03f7e964936721abf6c04ca6bf91d10b4451030f4440814ac445b58a0b06d11c7f6663c1b22019') -install=neovim.install +sha512sums=('1d770a4643a44da65f0a03c90e18e89f337b16ec3eca20dbffa21bcab10c836062ef82974437b64bd766f7b07317cd3dc8e3e72b9d5d0911b1d4f2c528cd20c2') build() { cmake -Hneovim-${pkgver} -Bbuild -GNinja \ diff --git a/community/neovim/neovim.install b/community/neovim/neovim.install deleted file mode 100644 index b7acf5de5..000000000 --- a/community/neovim/neovim.install +++ /dev/null @@ -1,10 +0,0 @@ -# $1: new package version -post_install() { - echo ":: The Neovim executable is called 'nvim'." - echo ":: If you are already familiar with Vim, see ':help nvim-from-vim'" - echo " to get started." - echo ":: If you have any questions, check the following page first:" - echo " https://github.com/neovim/neovim/wiki/FAQ" -} - -# vim:set sw=2 sts=2 et: