Files
termux-packages/packages/procs/build.sh
termux-pacman-bot 22258f8ca2 bump(main/procs): 0.14.4
This commit has been automatically submitted by Github Actions.
2023-11-24 06:32:31 +00:00

20 lines
755 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/dalance/procs
TERMUX_PKG_DESCRIPTION="A modern replacement for ps"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.14.4"
TERMUX_PKG_SRCURL=https://github.com/dalance/procs/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=77c5f5d3bdfc9cef870732500ef58c203a1464f924b12f79c7d9e301b4dd5b16
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
# This package contains makefiles to run the tests. So, we need to override build steps.
termux_step_make() {
termux_setup_rust
cargo build --jobs $TERMUX_MAKE_PROCESSES --target $CARGO_TARGET_NAME --release
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin target/${CARGO_TARGET_NAME}/release/procs
}