From fea65c1e824a5991ebe2e4e5e200fbd024eee9c4 Mon Sep 17 00:00:00 2001 From: termux-pacman-bot Date: Tue, 3 Feb 2026 15:49:39 +0000 Subject: [PATCH] bump(main/tree-sitter-vim): 0.8.0 --- packages/tree-sitter-vim/build.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/tree-sitter-vim/build.sh b/packages/tree-sitter-vim/build.sh index 09e0dc3064..7fb3ae15a2 100644 --- a/packages/tree-sitter-vim/build.sh +++ b/packages/tree-sitter-vim/build.sh @@ -2,21 +2,21 @@ TERMUX_PKG_HOMEPAGE=https://github.com/tree-sitter-grammars/tree-sitter-vim TERMUX_PKG_DESCRIPTION="Vimscript grammar for tree-sitter" TERMUX_PKG_LICENSE="MIT" TERMUX_PKG_MAINTAINER="Joshua Kahn @TomJo2000" -TERMUX_PKG_VERSION="0.7.0" -TERMUX_PKG_REVISION=1 +TERMUX_PKG_VERSION="0.8.0" TERMUX_PKG_SRCURL=https://github.com/tree-sitter-grammars/tree-sitter-vim/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz -TERMUX_PKG_SHA256=44eabc31127c4feacda19f2a05a5788272128ff561ce01093a8b7a53aadcc7b2 +TERMUX_PKG_SHA256=aa0a45027408bc33da0f2244272dbdc0b4e71bd18f71e5b885f6f7cbae407338 TERMUX_PKG_AUTO_UPDATE=true TERMUX_PKG_UPDATE_TAG_TYPE='newest-tag' TERMUX_PKG_BUILD_IN_SRC=true -termux_step_pre_configure() { - # these need to be removed for this one, hell if I know why - rm setup.py pyproject.toml +termux_step_configure() { termux_setup_treesitter } -termux_step_post_make_install() { - install -d "${TERMUX_PREFIX}"/lib/tree_sitter - ln -sf "${TERMUX_PREFIX}"/lib/libtree-sitter-vim.so "${TERMUX_PREFIX}"/lib/tree_sitter/vim.so +termux_step_make() { + termux-tree-sitter build +} + +termux_step_make_install() { + termux-tree-sitter install }