neovim: update to 0.3.5.
This commit is contained in:
parent
5e73fdad2a
commit
57a887ee13
1 changed files with 20 additions and 16 deletions
|
@ -1,26 +1,17 @@
|
||||||
# Template file for 'neovim'
|
# Template file for 'neovim'
|
||||||
pkgname=neovim
|
pkgname=neovim
|
||||||
version=0.3.4
|
version=0.3.5
|
||||||
revision=1
|
revision=1
|
||||||
build_style=cmake
|
build_style=cmake
|
||||||
configure_args="-DENABLE_JEMALLOC=0 -DUSE_BUNDLED_LIBTERMKEY=OFF"
|
configure_args="-DENABLE_JEMALLOC=0"
|
||||||
hostmakedepends="pkg-config gperf LuaJIT-devel lua51-lpeg lua51-mpack"
|
hostmakedepends="pkg-config gperf LuaJIT lua51-lpeg lua51-mpack"
|
||||||
makedepends="libtermkey-devel libuv-devel libvterm-devel msgpack-devel"
|
makedepends="libtermkey-devel libuv-devel libvterm-devel msgpack-devel LuaJIT-devel"
|
||||||
short_desc="Fork of Vim aiming to improve user experience, plugins and GUIs"
|
short_desc="Fork of Vim aiming to improve user experience, plugins and GUIs"
|
||||||
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
|
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
|
||||||
license="Apache-2.0, GPL-2.0-or-later"
|
license="Apache-2.0, custom:Vim"
|
||||||
homepage="https://neovim.io"
|
homepage="https://neovim.io"
|
||||||
distfiles="https://github.com/${pkgname}/${pkgname}/archive/v${version}.tar.gz"
|
distfiles="https://github.com/neovim/neovim/archive/v${version}.tar.gz"
|
||||||
checksum=a641108bdebfaf319844ed46b1bf35d6f7c30ef5aeadeb29ba06e19c3274bc0e
|
checksum=b8b30043963133214f78901cb6361189c8f94e9f5f1b2493a7cedb4c323236d6
|
||||||
|
|
||||||
do_check() {
|
|
||||||
# requires downloading stuff from the outside and also adds the following deps
|
|
||||||
# libtool, automake, curl, unzip
|
|
||||||
:
|
|
||||||
}
|
|
||||||
|
|
||||||
# XXX: neovim needs host bin to generate helptags at build time.
|
|
||||||
nocross=yes
|
|
||||||
|
|
||||||
alternatives="
|
alternatives="
|
||||||
vi:vi:/usr/bin/nvim
|
vi:vi:/usr/bin/nvim
|
||||||
|
@ -29,3 +20,16 @@ alternatives="
|
||||||
vi:view.1:/usr/share/man/man1/nvim.1
|
vi:view.1:/usr/share/man/man1/nvim.1
|
||||||
vim:vim:/usr/bin/nvim
|
vim:vim:/usr/bin/nvim
|
||||||
vim:vim.1:/usr/share/man/man1/nvim.1"
|
vim:vim.1:/usr/share/man/man1/nvim.1"
|
||||||
|
|
||||||
|
if [ "$CROSS_BUILD" ]; then
|
||||||
|
hostmakedepends+=" qemu-user-static"
|
||||||
|
fi
|
||||||
|
|
||||||
|
pre_configure() {
|
||||||
|
vsed -i runtime/CMakeLists.txt \
|
||||||
|
-e "s|\".*/bin/nvim|\${CMAKE_CROSSCOMPILING_EMULATOR} &|g"
|
||||||
|
}
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue