Files
termux-packages/packages/zoxide/build.sh
termux-pacman-bot 9e28480760 chore(main/zoxide): Install shell completions
Also fix man page directory. Previously, man pages were in an extra man1 subdirectory.
2024-04-01 13:08:34 +00:00

22 lines
924 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/ajeetdsouza/zoxide
TERMUX_PKG_DESCRIPTION="A faster way to navigate your filesystem"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.9.4"
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://github.com/ajeetdsouza/zoxide/archive/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=ec002bdca37917130ae34e733eb29d4baa03b130c4b11456d630a01a938e0187
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
rm -f ./Makefile
}
termux_step_post_make_install() {
install -Dm644 contrib/completions/zoxide.bash "$TERMUX_PREFIX"/share/bash-completion/completions/zoxide
install -Dm644 contrib/completions/_zoxide "$TERMUX_PREFIX"/share/zsh/site-functions/_zoxide
install -Dm644 contrib/completions/zoxide.fish "$TERMUX_PREFIX"/share/fish/vendor_completions.d/zoxide.fish
install -Dm644 man/man1/*.1 -t "$TERMUX_PREFIX"/share/man/man1/
}