mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-09 00:17:31 +00:00
added community/neovim
This commit is contained in:
parent
6622fea61e
commit
a5f58e3769
2 changed files with 68 additions and 0 deletions
58
community/neovim/PKGBUILD
Normal file
58
community/neovim/PKGBUILD
Normal file
|
@ -0,0 +1,58 @@
|
|||
# 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
|
||||
pkgver=0.3.2
|
||||
pkgrel=1
|
||||
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)
|
||||
sha512sums=('1192d9330da3ab543dcb39bdff517637c7a52be558ad07a60de27bbf051432064edc230b46ddd9cdcae006ba1340550128e4d4ced7105f1aab57b13c2c4479ae')
|
||||
install=neovim.install
|
||||
|
||||
build() {
|
||||
mkdir -p "${srcdir}/build"
|
||||
cd "${srcdir}/build"
|
||||
|
||||
cmake "../neovim-${pkgver}" \
|
||||
-G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DENABLE_JEMALLOC=ON \
|
||||
-DENABLE_LTO=OFF
|
||||
cmake --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}"/usr/share/vim
|
||||
echo "set runtimepath+=/usr/share/vim/vimfiles" > "${pkgdir}"/usr/share/nvim/sysinit.vim
|
||||
}
|
||||
|
||||
# vim:set sw=2 sts=2 et:
|
10
community/neovim/neovim.install
Normal file
10
community/neovim/neovim.install
Normal file
|
@ -0,0 +1,10 @@
|
|||
# $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:
|
Loading…
Reference in a new issue