community/neovim to 0.7.0-3

This commit is contained in:
Kevin Mihelich 2022-04-19 01:00:50 +00:00
parent c656460774
commit 6f5ec211be

View file

@ -8,7 +8,7 @@
pkgname=neovim pkgname=neovim
pkgver=0.7.0 pkgver=0.7.0
pkgrel=1 pkgrel=3
pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs' pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
arch=('x86_64') arch=('x86_64')
url='https://neovim.io' url='https://neovim.io'
@ -16,41 +16,41 @@ backup=('etc/xdg/nvim/sysinit.vim')
license=('custom:neovim') license=('custom:neovim')
provides=('vim-plugin-runtime') provides=('vim-plugin-runtime')
depends=('libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm01' 'luajit' 'libluv' 'tree-sitter') depends=('libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm01' 'luajit' 'libluv' 'tree-sitter')
makedepends=('cmake' 'ninja' 'lua51-mpack' 'lua51-lpeg' 'gperf') makedepends=('cmake' 'ninja' 'lua51-mpack' 'lua51-lpeg' 'gperf' 'patchelf')
optdepends=('python-neovim: for Python 3 plugin support (see :help python)' optdepends=('python-neovim: for Python 3 plugin support (see :help python)'
'xclip: for clipboard support on X11 (or xsel) (see :help clipboard)' 'xclip: for clipboard support on X11 (or xsel) (see :help clipboard)'
'xsel: for clipboard support on X11 (or xclip) (see :help clipboard)' 'xsel: for clipboard support on X11 (or xclip) (see :help clipboard)'
'wl-clipboard: for clipboard support on wayland (see :help clipboard)') 'wl-clipboard: for clipboard support on wayland (see :help clipboard)')
options=(debug)
source=("https://github.com/neovim/neovim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz") source=("https://github.com/neovim/neovim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha512sums=('3597c54fb925a4d607bca9ba0fdb37df90ecb816da99f52baf46cc2ec79727a55048ba1d8d22c8e7d61f0e8e35546326b1d0d15c0a91de8bf5bc529c45fb1ce0') sha512sums=('3597c54fb925a4d607bca9ba0fdb37df90ecb816da99f52baf46cc2ec79727a55048ba1d8d22c8e7d61f0e8e35546326b1d0d15c0a91de8bf5bc529c45fb1ce0')
build() { build() {
cd neovim-${pkgver} export PKG_CONFIG_PATH="/usr/lib/libvterm01/pkgconfig:$PKG_CONFIG_PATH"
cmake \ cmake \
-Bbuild \ -Bbuild \
-GNinja \ -GNinja \
-DCMAKE_BUILD_TYPE=Release \ -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_PREFIX=/usr \
-DUSE_BUNDLED=OFF \ -DUSE_BUNDLED=OFF \
-DENABLE_LTO=OFF -DENABLE_LTO=OFF \
cmake --build build -W no-dev \
-S neovim-$pkgver
cmake --build build --verbose
} }
check() { check() {
cd neovim-${pkgver}/build ./build/bin/nvim --version
./bin/nvim --version ./build/bin/nvim --headless -u NONE -i NONE -c ':quit'
./bin/nvim --headless -u NONE -i NONE -c ':quit'
} }
package() { package() {
cd neovim-${pkgver} DESTDIR="$pkgdir" cmake --install build
DESTDIR="${pkgdir}" cmake --install build
cd "${srcdir}/neovim-${pkgver}" install -Dm644 neovim-$pkgver/LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}/"
install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt" install -Dm644 neovim-$pkgver/runtime/nvim.desktop -t "${pkgdir}/usr/share/applications/"
install -Dm644 runtime/nvim.desktop "${pkgdir}/usr/share/applications/nvim.desktop" install -Dm644 neovim-$pkgver/runtime/nvim.appdata.xml -t "${pkgdir}/usr/share/metainfo/"
install -Dm644 runtime/nvim.appdata.xml "${pkgdir}/usr/share/metainfo/nvim.appdata.xml" install -Dm644 neovim-$pkgver/runtime/nvim.png -t "${pkgdir}/usr/share/pixmaps/"
install -Dm644 runtime/nvim.png "${pkgdir}/usr/share/pixmaps/nvim.png"
# Make Arch vim packages work # Make Arch vim packages work
mkdir -p "${pkgdir}"/etc/xdg/nvim mkdir -p "${pkgdir}"/etc/xdg/nvim
@ -59,6 +59,10 @@ package() {
mkdir -p "${pkgdir}"/usr/share/vim mkdir -p "${pkgdir}"/usr/share/vim
echo "set runtimepath+=/usr/share/vim/vimfiles" > "${pkgdir}"/usr/share/nvim/archlinux.vim echo "set runtimepath+=/usr/share/vim/vimfiles" > "${pkgdir}"/usr/share/nvim/archlinux.vim
# NOTE: this is very ugly and needs to be removed as soon as neovim supports libvterm >= 0.2.0
# (both libvterm01 and libvterm provide libvterm.so.0)
patchelf --add-rpath '/usr/lib/libvterm01' "$pkgdir/usr/bin/nvim"
} }
# vim:set ft=sh sw=2 sts=2 et: # vim:set ft=sh sw=2 sts=2 et: