termux-packages/packages/watchexec/build.sh

49 lines
1.6 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=1.20.6
TERMUX_PKG_SRCURL=https://github.com/watchexec/watchexec/archive/refs/tags/cli-v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=fa490944bbc8eafdc585454d27ec6f75988ce7d159db8ee1244b1fc5bbd86935
TERMUX_PKG_AUTO_UPDATE=false
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
termux_setup_rust
: "${CARGO_HOME:=$HOME/.cargo}"
export CARGO_HOME
cd crates/cli
cargo fetch --target $CARGO_TARGET_NAME
local p=git-config-0.7.1-src-values-path.rs.diff
local d
for d in $CARGO_HOME/registry/src/github.com-*/git-config-*; do
patch --silent -p1 -d ${d} < $TERMUX_PKG_BUILDER_DIR/${p} || :
done
}
termux_step_make_install() {
cargo install \
--jobs $TERMUX_MAKE_PROCESSES \
--path crates/cli \
--force \
--locked \
--target $CARGO_TARGET_NAME \
--root $TERMUX_PREFIX \
$TERMUX_PKG_EXTRA_CONFIGURE_ARGS
# https://github.com/rust-lang/cargo/issues/3316:
rm -f $TERMUX_PREFIX/.crates.toml
rm -f $TERMUX_PREFIX/.crates2.json
}
termux_step_post_make_install() {
install -Dm644 -t "$TERMUX_PREFIX"/share/doc/watchexec/watchexec.1.html \
"$TERMUX_PKG_SRCDIR"/doc/watchexec.1.html
install -Dm644 -t "$TERMUX_PREFIX"/share/man/man1/watchexec.1 \
"$TERMUX_PKG_SRCDIR"/doc/watchexec.1
install -Dm644 "completions/zsh" \
"$TERMUX_PREFIX/share/zsh/site-functions/_watchexec"
install -Dm644 LICENSE "$TERMUX_PREFIX/share/licenses/watchexec/LICENSE"
}