Files
termux-packages/packages/nushell/build.sh
termux-pacman-bot 4a09da7fd1 bump(main/nushell): 0.100.0
This commit has been automatically submitted by Github Actions.
2024-11-13 12:47:17 +00:00

19 lines
616 B
Bash

TERMUX_PKG_HOMEPAGE=https://www.nushell.sh
TERMUX_PKG_DESCRIPTION="A new type of shell operating on structured data"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.100.0"
TERMUX_PKG_SRCURL=https://github.com/nushell/nushell/archive/$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=00b94984d3140e286e06d4beca2926ef80e0a0cc3ada75916e4fb9fa66ec28ad
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="openssl"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
termux_setup_rust
if [ "$TERMUX_ARCH" = "x86_64" ]; then
RUSTFLAGS+=" -C link-arg=$($CC -print-libgcc-file-name)"
fi
}