1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-18 18:47:05 +00:00
termux-packages/packages/aichat/build.sh
Termux Github Actions d5d926be7f bump(main/aichat): 0.15.0
This commit has been automatically submitted by Github Actions.
2024-04-07 18:12:00 +00:00

21 lines
805 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/sigoden/aichat
TERMUX_PKG_DESCRIPTION="A powerful chatgpt cli"
TERMUX_PKG_LICENSE="Apache-2.0,MIT"
TERMUX_PKG_LICENSE_FILE="LICENSE-APACHE,LICENSE-MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.15.0"
TERMUX_PKG_SRCURL=https://github.com/sigoden/aichat/archive/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=aa235d15d7a7f00e023d141eba100f329b33d56cf9fb32936f3c3ee652b7c65a
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=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/aichat
}