sd: add shell completions and man page (#19735)

This commit is contained in:
Filipe Nascimento 2024-04-10 14:59:42 -03:00 committed by GitHub
parent 1b3f9a202f
commit d56df33020
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,7 @@ TERMUX_PKG_DESCRIPTION="An intuitive find & replace CLI"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.0.0"
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=git+https://github.com/chmln/sd
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
@ -14,4 +15,11 @@ termux_step_make() {
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin target/${CARGO_TARGET_NAME}/release/sd
install -Dm644 gen/sd.1 "$TERMUX_PREFIX/share/man/man1/sd.1"
install -Dm644 gen/completions/sd.bash "$TERMUX_PREFIX/share/bash-completion/completions/sd"
install -Dm644 gen/completions/_sd "$TERMUX_PREFIX/share/zsh/site-functions/_sd"
install -Dm644 gen/completions/sd.fish "$TERMUX_PREFIX/share/fish/vendor_completions.d/sd.fish"
install -Dm644 gen/completions/sd.elv "$TERMUX_PREFIX/share/elvish/lib/sd.elv"
}