new package: lipl

This commit is contained in:
Tee KOBAYASHI 2022-01-16 10:40:38 +09:00 committed by Leonid Pliushch
parent f26881c10f
commit c5b53a9612
1 changed files with 16 additions and 0 deletions

16
packages/lipl/build.sh Normal file
View File

@ -0,0 +1,16 @@
TERMUX_PKG_HOMEPAGE=https://github.com/yxdunc/lipl
TERMUX_PKG_DESCRIPTION="A command line tool that is similar to watch but has extended functions for commands outputing a number"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.1.3
TERMUX_PKG_SRCURL=https://github.com/yxdunc/lipl.git
TERMUX_PKG_BUILD_IN_SRC=true
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/lipl
}