termux-packages/packages/ripgrep/build.sh
Yaksh Bariya 3165cc82ad Install external completions for fish in $PREFIX/share/fish/vendor_comletions.d
Currently we are installing package specific completions for fisg shell
in `$PREFIX/share/fish/completions` which is incorrect. This also fixes
completions from fish ahell conflicting with other packages'
completions.
2022-01-26 14:47:03 +00:00

31 lines
1.2 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/BurntSushi/ripgrep
TERMUX_PKG_DESCRIPTION="Search tool like grep and The Silver Searcher"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=13.0.0
TERMUX_PKG_REVISION=2
TERMUX_PKG_SRCURL=https://github.com/BurntSushi/ripgrep/archive/$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=0fb17aaf285b3eee8ddab17b833af1e190d73de317ff9648751ab0660d763ed2
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="pcre2"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--features pcre2"
termux_step_post_make_install() {
# Install man page:
mkdir -p $TERMUX_PREFIX/share/man/man1/
cp $(find . -name rg.1) $TERMUX_PREFIX/share/man/man1/
# Install bash completion script:
mkdir -p $TERMUX_PREFIX/share/bash-completion/completions/
cp $(find . -name rg.bash) $TERMUX_PREFIX/share/bash-completion/completions/rg
# Install fish completion script:
mkdir -p $TERMUX_PREFIX/share/fish/completions/
cp $(find . -name rg.fish) $TERMUX_PREFIX/share/fish/vendor_completions.d/
# Install zsh completion script:
mkdir -p $TERMUX_PREFIX/share/zsh/site-functions/
cp complete/_rg $TERMUX_PREFIX/share/zsh/site-functions/
}