mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-04 09:28:54 +00:00
41 lines
1.6 KiB
Bash
41 lines
1.6 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/sharkdp/fd
|
|
TERMUX_PKG_DESCRIPTION="Simple, fast and user-friendly alternative to find"
|
|
TERMUX_PKG_LICENSE="Apache-2.0,MIT"
|
|
TERMUX_PKG_LICENSE_FILE="LICENSE-APACHE,LICENSE-MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="10.2.0"
|
|
TERMUX_PKG_SRCURL=https://github.com/sharkdp/fd/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=73329fe24c53f0ca47cd0939256ca5c4644742cb7c14cf4114c8c9871336d342
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_make() {
|
|
termux_setup_rust
|
|
cargo build --jobs $TERMUX_PKG_MAKE_PROCESSES --target $CARGO_TARGET_NAME --release
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t $TERMUX_PREFIX/bin target/${CARGO_TARGET_NAME}/release/fd
|
|
|
|
install -Dm644 /dev/null "${TERMUX_PREFIX}"/share/bash-completion/completions/"${TERMUX_PKG_NAME}".bash
|
|
install -Dm644 /dev/null "${TERMUX_PREFIX}"/share/zsh/site-functions/_"${TERMUX_PKG_NAME}"
|
|
install -Dm644 /dev/null "${TERMUX_PREFIX}"/share/fish/vendor_completions.d/"${TERMUX_PKG_NAME}".fish
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
# Manpages.
|
|
install -Dm600 doc/"${TERMUX_PKG_NAME}".1 \
|
|
"${TERMUX_PREFIX}"/share/man/man1/"${TERMUX_PKG_NAME}".1
|
|
|
|
install -Dm600 contrib/completion/_"${TERMUX_PKG_NAME}" \
|
|
"${TERMUX_PREFIX}"/share/zsh/site-functions/_"${TERMUX_PKG_NAME}"
|
|
}
|
|
|
|
termux_step_create_debscripts() {
|
|
cat <<- EOF > ./postinst
|
|
#!${TERMUX_PREFIX}/bin/sh
|
|
fd --gen-completions bash > ${TERMUX_PREFIX}/share/bash-completion/completions/fd.bash
|
|
fd --gen-completions fish > ${TERMUX_PREFIX}/share/fish/vendor_completions.d/fd.fish
|
|
EOF
|
|
}
|