PKGBUILDs/community/neovim/PKGBUILD

55 lines
1.9 KiB
Bash
Raw Normal View History

2019-01-03 13:47:52 +00:00
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# 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-04-29 23:21:49 +00:00
pkgver=0.3.5
pkgrel=1
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'
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)'
'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)
2019-04-29 23:21:49 +00:00
sha512sums=('8e7c14df59fdcb0eb03a2dbed5d56ae3b1eadb9aac805e69da03f7e964936721abf6c04ca6bf91d10b4451030f4440814ac445b58a0b06d11c7f6663c1b22019')
2019-01-03 13:47:52 +00:00
install=neovim.install
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_JEMALLOC=ON \
-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
mkdir -p "${pkgdir}"/usr/share/vim
echo "set runtimepath+=/usr/share/vim/vimfiles" > "${pkgdir}"/usr/share/nvim/sysinit.vim
}
# vim:set sw=2 sts=2 et: