Date: Tuesday, March 31, 2020 @ 10:35:08
  Author: svenstaro
Revision: 607962

archrelease: copy trunk to community-testing-x86_64

Added:
  neovim/repos/community-testing-x86_64/
  neovim/repos/community-testing-x86_64/PKGBUILD
    (from rev 607961, neovim/trunk/PKGBUILD)

----------+
 PKGBUILD |   54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

Copied: neovim/repos/community-testing-x86_64/PKGBUILD (from rev 607961, 
neovim/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD                           (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-03-31 10:35:08 UTC (rev 607962)
@@ -0,0 +1,54 @@
+# Maintainer: Sven-Hendrik Haase <svenst...@gmail.com>
+# Contributor: Florian Walch <florian+...@fwalch.com>
+# Contributor: Florian Hahn <f...@fhahn.com>
+
+pkgname=neovim
+pkgver=0.4.3
+pkgrel=3
+pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
+arch=('x86_64')
+url='https://neovim.io'
+backup=('etc/xdg/nvim/sysinit.vim')
+license=('custom:neovim')
+provides=('vim-plugin-runtime')
+depends=('libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm' 'luajit' 
'libluv')
+makedepends=('cmake' 'ninja' 'lua51-mpack' 'lua51-lpeg' 'gperf')
+optdepends=('python-neovim: for Python 3 plugin support (see :help python)'
+            'xclip: for clipboard support on X11 (or xsel) (see :help 
clipboard)'
+            'xsel: for clipboard support on X11 (or xclip) (see :help 
clipboard)'
+            'wl-clipboard: for clipboard support on wayland (see :help 
clipboard)')
+source=("https://github.com/neovim/neovim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('e13853fa296eda8618f389c71b6cbbd6f01d561615e80cc92959131dd10e395b1c6732a7d9ef6dbb9fe3ea9da4c11485b464547e2d46b22e59b8a20214e861f5')
+
+build() {
+  cmake -Hneovim-${pkgver} -Bbuild -GNinja \
+        -DCMAKE_BUILD_TYPE=Release \
+        -DCMAKE_INSTALL_PREFIX=/usr
+  cmake --build build
+}
+
+check() {
+  cd "${srcdir}/build"
+  ./bin/nvim --version
+  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
+}
+
+package() {
+  cd "${srcdir}/build"
+  DESTDIR="${pkgdir}" cmake --build . --target install
+
+  cd "${srcdir}/neovim-${pkgver}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 runtime/nvim.desktop 
"${pkgdir}/usr/share/applications/nvim.desktop"
+  install -Dm644 runtime/nvim.png "${pkgdir}/usr/share/pixmaps/nvim.png"
+
+  # Make Arch vim packages work
+  mkdir -p "${pkgdir}"/etc/xdg/nvim
+  echo "\" This line makes pacman-installed global Arch Linux vim packages 
work." > "${pkgdir}"/etc/xdg/nvim/sysinit.vim
+  echo "source /usr/share/nvim/archlinux.vim" >> 
"${pkgdir}"/etc/xdg/nvim/sysinit.vim
+
+  mkdir -p "${pkgdir}"/usr/share/vim
+  echo "set runtimepath+=/usr/share/vim/vimfiles" > 
"${pkgdir}"/usr/share/nvim/archlinux.vim
+}
+
+# vim:set sw=2 sts=2 et:

Reply via email to