From a06bb07c6501f287a4d4593b2e7f87ba4109bb92 Mon Sep 17 00:00:00 2001 From: cinerea0 Date: Mon, 7 Nov 2022 17:24:11 -0500 Subject: [PATCH] skim: update to 0.10.1 --- srcpkgs/skim/template | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/srcpkgs/skim/template b/srcpkgs/skim/template index 0bc25a572437..f189f1da62c0 100644 --- a/srcpkgs/skim/template +++ b/srcpkgs/skim/template @@ -1,26 +1,33 @@ # Template file for 'skim' pkgname=skim -version=0.9.4 -revision=2 +version=0.10.1 +revision=1 build_style=cargo short_desc="Fuzzy Finder in rust" maintainer="Orphaned " license="MIT" homepage="https://github.com/lotabout/skim" -distfiles="https://github.com/lotabout/skim/archive/v${version}.tar.gz" -checksum=5ec639c34c7657be4f7f990e9ad0d8d0a7a979eba68daa7c100126ce06702a1b +changelog="https://raw.githubusercontent.com/lotabout/skim/master/CHANGELOG.md" +distfiles="https://github.com/lotabout/skim/archive/refs/tags/v${version}.tar.gz" +checksum=7ff0626a185c06eca2e71858a1d656aed08b3932db8a6f6f59651d3e7a5e515f + +if [ "$XBPS_WORDSIZE" = 32 ]; then + make_check=no # disable tests on 32bit due to register exhaustion +fi post_install() { vbin bin/sk-tmux + vman man/man1/sk.1 vman man/man1/sk-tmux.1 - vlicense LICENSE - - vinstall plugin/skim.vim 644 usr/share/vim/vimfiles/plugin - vinstall shell/completion.bash 644 usr/share/skim - vinstall shell/completion.zsh 644 usr/share/skim + vcompletion shell/completion.bash bash sk + vcompletion shell/completion.zsh zsh sk vinstall shell/key-bindings.zsh 644 usr/share/skim vinstall shell/key-bindings.bash 644 usr/share/skim vinstall shell/key-bindings.fish 644 usr/share/skim + + vinstall plugin/skim.vim 644 usr/share/vim/vimfiles/plugin + + vlicense LICENSE }