void-packages/srcpkgs/watchexec/template

27 lines
800 B
Bash

# Template file for 'watchexec'
pkgname=watchexec
version=1.25.1
revision=1
build_style=cargo
make_install_args="--path crates/cli"
make_check_args="-- --skip scopes" # test fails in chroot
short_desc="Executes commands in response to file modifications"
maintainer="cinerea0 <cinerea0@protonmail.com>"
license="Apache-2.0"
homepage="https://github.com/watchexec/watchexec"
changelog="https://github.com/watchexec/watchexec/releases"
distfiles="https://github.com/watchexec/watchexec/archive/refs/tags/v${version}.tar.gz"
checksum=9609163c14cd49ec651562838f38b88ed2d370e354af312ddc78c2be76c08d37
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
XBPS_CROSS_RUSTFLAGS+=" -latomic"
fi
post_install() {
for shell in bash fish zsh; do
vcompletion completions/${shell} ${shell}
done
vman doc/watchexec.1
}