2018-08-23 17:35:49 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://github.com/BurntSushi/ripgrep
|
|
|
|
TERMUX_PKG_DESCRIPTION="Search tool like grep and The Silver Searcher"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="MIT"
|
2018-09-08 01:55:26 +02:00
|
|
|
TERMUX_PKG_VERSION=0.10.0
|
2019-01-19 02:20:51 +01:00
|
|
|
TERMUX_PKG_REVISION=2
|
2018-09-08 01:55:26 +02:00
|
|
|
TERMUX_PKG_SHA256=a2a6eb7d33d75e64613c158e1ae450899b437e37f1bfbd54f713b011cd8cc31e
|
2018-08-23 17:35:49 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/BurntSushi/ripgrep/archive/$TERMUX_PKG_VERSION.tar.gz
|
|
|
|
TERMUX_PKG_BUILD_IN_SRC=yes
|
|
|
|
|
2018-09-03 23:57:26 +02:00
|
|
|
termux_step_post_make_install() {
|
2018-09-14 20:40:34 +02:00
|
|
|
# Install man page:
|
2018-08-23 17:35:49 +02:00
|
|
|
mkdir -p $TERMUX_PREFIX/share/man/man1/
|
2019-02-12 09:41:30 +01:00
|
|
|
cp $(find . -name rg.1) $TERMUX_PREFIX/share/man/man1/
|
2018-09-14 20:40:34 +02:00
|
|
|
|
|
|
|
# Install bash completion script:
|
|
|
|
mkdir -p $TERMUX_PREFIX/share/bash-completion/completions/
|
2019-02-12 09:41:30 +01:00
|
|
|
cp $(find . -name rg.bash) $TERMUX_PREFIX/share/bash-completion/completions/rg
|
2018-09-14 20:40:34 +02:00
|
|
|
|
|
|
|
# Install fish completion script:
|
|
|
|
mkdir -p $TERMUX_PREFIX/share/fish/completions/
|
2019-02-12 09:41:30 +01:00
|
|
|
cp $(find . -name rg.fish) $TERMUX_PREFIX/share/fish/completions/
|
2018-09-14 20:40:34 +02:00
|
|
|
|
|
|
|
# Install zsh completion script:
|
|
|
|
mkdir -p $TERMUX_PREFIX/share/zsh/site-functions/
|
|
|
|
cp complete/_rg $TERMUX_PREFIX/share/zsh/site-functions/
|
2018-08-23 17:35:49 +02:00
|
|
|
}
|