bb1d7adf60
This commit has been automatically submitted by Github Actions.
20 lines
865 B
Bash
20 lines
865 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/jarun/nnn
|
|
TERMUX_PKG_DESCRIPTION="Free, fast, friendly file browser"
|
|
TERMUX_PKG_LICENSE="BSD 2-Clause"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="4.5"
|
|
TERMUX_PKG_SRCURL=https://github.com/jarun/nnn/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=fadc15bd6d4400c06e5ccc47845b42e60774f368570e475bd882767ee18749aa
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="file, findutils, readline, wget, libandroid-support, lzip"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_post_make_install() {
|
|
install -Dm600 misc/auto-completion/bash/nnn-completion.bash \
|
|
$TERMUX_PREFIX/share/bash-completion/completions/nnn
|
|
install -Dm600 misc/auto-completion/fish/nnn.fish \
|
|
$TERMUX_PREFIX/share/fish/vendor_completions.d/nnn.fish
|
|
install -Dm600 misc/auto-completion/zsh/_nnn \
|
|
$TERMUX_PREFIX/share/zsh/site-functions/_nnn
|
|
}
|