diff options
Diffstat (limited to 'development/neovim/neovim.SlackBuild')
-rw-r--r-- | development/neovim/neovim.SlackBuild | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/development/neovim/neovim.SlackBuild b/development/neovim/neovim.SlackBuild index 4465671223..bae1a33fa2 100644 --- a/development/neovim/neovim.SlackBuild +++ b/development/neovim/neovim.SlackBuild @@ -5,6 +5,7 @@ # Copyright 2014-2021 Benjamin Trigona-Harany <slackbuilds@jaxartes.net> # Copyright 2021-2022 Ruben Schuller <sb@rbn.im> # Copyright 2023-2024 Alexander Verbovetsky, Moscow, Russia +# Copyright 2025 Diego Hernan Borghetti # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -27,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=neovim -VERSION=${VERSION:-0.10.2} +VERSION=${VERSION:-0.11.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -78,7 +79,7 @@ for d in LuaJIT-*.tar.gz luv-*.tar.gz lua-compat-5.3-*.tar.gz \ tree-sitter-c-*.tar.gz tree-sitter-lua-*.tar.gz \ tree-sitter-markdown-*.tar.gz tree-sitter-query-*.tar.gz \ tree-sitter-vimdoc-*.tar.gz tree-sitter-vim-*.tar.gz \ - lpeg-*.tar.gz + lpeg-*.tar.gz unibilium-*.tar.gz utf8proc-*.tar.gz do tar xvf $CWD/$d done @@ -92,6 +93,8 @@ mv tree-sitter-query-* treesitter_query mv tree-sitter-vimdoc-* treesitter_vimdoc mv tree-sitter-vim-* treesitter_vim mv lpeg-* lpeg +mv unibilium-* unibilium +mv utf8proc-* utf8proc cd $TMP/$PRGNAM-$VERSION @@ -114,7 +117,9 @@ make \ -DUSE_BUNDLED_LUV=ON \ -DUSE_BUNDLED_LUAJIT=ON \ -DUSE_BUNDLED_LPEG=ON \ - -DUSE_BUNDLED_TS_PARSERS=ON" \ + -DUSE_BUNDLED_UNIBILIUM=ON \ + -DUSE_BUNDLED_TS_PARSERS=ON \ + -DUSE_BUNDLED_UTF8PROC=ON" \ CMAKE_BUILD_TYPE=Release make install DESTDIR=$PKG |