Files
termux-packages/packages/watchexec/build.sh
2024-08-27 13:11:30 +00:00

37 lines
1.3 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/watchexec/watchexec
TERMUX_PKG_DESCRIPTION="Executes commands in response to file modifications"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=2.1.2
TERMUX_PKG_SRCURL=https://github.com/watchexec/watchexec/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=500b886038ccd553559fe19914e1a502728cfeb8ee9d81f3db448b05e5a890ec
TERMUX_PKG_AUTO_UPDATE=false
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make_install() {
termux_setup_rust
cargo install \
--jobs $TERMUX_PKG_MAKE_PROCESSES \
--path crates/cli \
--force \
--locked \
--no-track \
--target $CARGO_TARGET_NAME \
--root $TERMUX_PREFIX \
$TERMUX_PKG_EXTRA_CONFIGURE_ARGS
}
termux_step_post_make_install() {
local f
install -Dm600 -t "$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME" \
"$TERMUX_PKG_SRCDIR/doc/watchexec.1.md"
install -Dm600 -t "$TERMUX_PREFIX/share/man/man1" \
"$TERMUX_PKG_SRCDIR"/doc/watchexec.1
install -Dm600 -T "completions/bash" \
"$TERMUX_PREFIX/share/bash-completion/completions/watchexec"
install -Dm600 -T "completions/zsh" \
"$TERMUX_PREFIX/share/zsh/site-functions/_watchexec"
install -Dm600 -T "completions/fish" \
"$TERMUX_PREFIX/share/fish/vendor_completions.d/watchexec.fish"
}