commit 8a1a147adcc5675ff74d82cfd4082fe5fac375f2 Author: Aire-One Date: Mon May 24 12:10:01 2021 +0200 init diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..650c56e --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,56 @@ +# Base on the archlinux PKGBUILD. +# +# Thanks to: +# Maintainer: Florian Walch +# Contributor: Florian Hahn +# Contributor: Sven-Hendrik Haase + +pkgname=neovim-git +pkgver=0.4.0.r3220.gabdda6641 +pkgrel=1 +pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs.' +arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64') +url='https://neovim.io' +license=('custom:neovim') +depends=('libluv' 'libtermkey' 'libutf8proc' 'libuv' 'libvterm>=0.1.git5' 'luajit' 'msgpack-c' 'unibilium' 'tree-sitter') +makedepends=('cmake' 'git' 'gperf' 'lua51-mpack' 'lua51-lpeg') +optdepends=('python2-neovim: for Python 2 plugin support (see :help provider-python)' + 'python-neovim: for Python 3 plugin support (see :help provider-python)' + 'ruby-neovim: for Ruby plugin support (see :help provider-ruby)' + 'xclip: for clipboard support (or xsel) (see :help provider-clipboard)' + 'xsel: for clipboard support (or xclip) (see :help provider-clipboard)' + 'wl-clipboard: for clipboard support on wayland (see :help clipboard)') +source=("${pkgname}::git+https://github.com/neovim/neovim.git") +sha256sums=('SKIP') +provides=("neovim=${pkgver}" 'vim-plugin-runtime') +conflicts=('neovim') +options=(!strip) + +pkgver() { + cd "${pkgname}" + git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' +} + +build() { + cmake -S"${pkgname}" -Bbuild \ + -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}/${pkgname}" + 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" +} +