2019-11-08 23:33:11 +00:00
|
|
|
# Maintainer: Sven-Hendrik Haase <svenstaro@gmail.com>
|
2019-01-03 13:47:52 +00:00
|
|
|
# Contributor: Florian Walch <florian+aur@fwalch.com>
|
|
|
|
# Contributor: Florian Hahn <flo@fhahn.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - -DENABLE_LTO=OFF
|
|
|
|
|
|
|
|
pkgname=neovim
|
2019-11-08 23:33:11 +00:00
|
|
|
pkgver=0.4.3
|
2020-02-28 13:18:33 +00:00
|
|
|
pkgrel=2
|
2019-01-03 13:47:52 +00:00
|
|
|
pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
|
|
|
|
arch=('x86_64')
|
|
|
|
url='https://neovim.io'
|
2019-06-18 01:50:49 +00:00
|
|
|
backup=('etc/xdg/nvim/sysinit.vim')
|
2019-01-03 13:47:52 +00:00
|
|
|
license=('custom:neovim')
|
2019-09-21 22:54:47 +00:00
|
|
|
depends=('libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm' 'luajit' 'libluv')
|
2019-01-03 13:47:52 +00:00
|
|
|
makedepends=('cmake' 'ninja' 'lua51-mpack' 'lua51-lpeg' 'gperf')
|
2019-05-29 18:19:53 +00:00
|
|
|
optdepends=('python-neovim: for Python 3 plugin support (see :help python)'
|
2020-02-28 13:18:33 +00:00
|
|
|
'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)')
|
2019-05-31 18:01:53 +00:00
|
|
|
source=("https://github.com/neovim/neovim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
|
2019-11-08 23:33:11 +00:00
|
|
|
sha512sums=('e13853fa296eda8618f389c71b6cbbd6f01d561615e80cc92959131dd10e395b1c6732a7d9ef6dbb9fe3ea9da4c11485b464547e2d46b22e59b8a20214e861f5')
|
2019-01-03 13:47:52 +00:00
|
|
|
|
|
|
|
build() {
|
2019-01-13 22:28:42 +00:00
|
|
|
cmake -Hneovim-${pkgver} -Bbuild -GNinja \
|
2019-01-03 13:47:52 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DENABLE_LTO=OFF
|
2019-01-13 22:28:42 +00:00
|
|
|
cmake --build build
|
2019-01-03 13:47:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2019-06-18 01:50:49 +00:00
|
|
|
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
|
|
|
|
|
2019-01-03 13:47:52 +00:00
|
|
|
mkdir -p "${pkgdir}"/usr/share/vim
|
2019-06-18 01:50:49 +00:00
|
|
|
echo "set runtimepath+=/usr/share/vim/vimfiles" > "${pkgdir}"/usr/share/nvim/archlinux.vim
|
2019-01-03 13:47:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set sw=2 sts=2 et:
|