Files
termux-packages/packages/choose/build.sh
termux-pacman-bot d16714cd92 bump(main/choose): 1.3.7
This commit has been automatically submitted by Github Actions.
2025-08-26 06:44:30 +00:00

18 lines
596 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/theryangeary/choose
TERMUX_PKG_DESCRIPTION="A human-friendly and fast alternative to cut and (sometimes) awk"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.3.7"
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_SRCURL=git+https://github.com/theryangeary/choose
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/choose
}