Files
termux-packages/packages/nushell/build.sh
termux-pacman-bot 02788d73cc bump(main/nushell): 0.109.1
This commit has been automatically submitted by Github Actions.
2025-12-03 02:21:05 +00:00

28 lines
1.0 KiB
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.109.1"
TERMUX_PKG_SRCURL=https://github.com/nushell/nushell/archive/refs/tags/${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=53d4611113a17ed3a29b0c81ea981d546a40dafca77fdcd9af7a7629ceabf48f
TERMUX_PKG_DEPENDS="openssl"
TERMUX_PKG_RECOMMENDS="command-not-found, termux-api"
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
termux_setup_rust
if [ "$TERMUX_ARCH" = "x86_64" ]; then
local env_host=$(printf $CARGO_TARGET_NAME | tr a-z A-Z | sed s/-/_/g)
export CARGO_TARGET_${env_host}_RUSTFLAGS+=" -C link-arg=$($CC -print-libgcc-file-name)"
fi
}
termux_step_post_make_install() {
local autoload_dir="$TERMUX_PREFIX/share/nushell/vendor/autoload"
mkdir -p "$autoload_dir"
sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" "$TERMUX_PKG_BUILDER_DIR/command-not-found.nu" \
>"$autoload_dir/command-not-found.nu"
}