1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-26 15:57:13 +00:00

fix(main/whitebox-tools): Fix build with current rust

This commit is contained in:
Fredrik Fornwall 2023-10-08 13:52:00 +02:00
parent 09201aa50b
commit ab3ffd7a9b

View File

@ -3,6 +3,7 @@ TERMUX_PKG_DESCRIPTION="An advanced geospatial data analysis platform"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="2.3.0"
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL="https://github.com/jblindsay/whitebox-tools/archive/refs/tags/v2.0.0.tar.gz"
TERMUX_PKG_SHA256=18705fc948bdb2f96cd816e5a72d36b9cc460aa8c910383d23fdbd61641aab60
TERMUX_PKG_AUTO_UPDATE=true
@ -10,6 +11,7 @@ TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make() {
termux_setup_rust
cargo update # Fix rust 1.73 incompatibility - can probably be removed when bumping version
cargo build --jobs $TERMUX_MAKE_PROCESSES --target $CARGO_TARGET_NAME --release
}