Files
termux-packages/packages/atuin/build.sh
termux-pacman-bot f89428015e bump(main/atuin): 18.7.1
This commit has been automatically submitted by Github Actions.
2025-07-16 18:46:28 +00:00

42 lines
1.5 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://atuin.sh/
TERMUX_PKG_DESCRIPTION="Magical shell history"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_LICENSE_FILE="../../LICENSE"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="18.7.1"
TERMUX_PKG_SRCURL=https://github.com/ellie/atuin/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=8a3e9e80390a996688590e27c245d5ad5dccfc2a1aedd53bd1e50e24a776e8d0
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
termux_setup_protobuf
termux_setup_rust
TERMUX_PKG_SRCDIR+="/crates/atuin"
TERMUX_PKG_BUILDDIR="$TERMUX_PKG_SRCDIR"
# https://github.com/termux/termux-packages/issues/8029
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
# clash with rust host build
unset CFLAGS
}
termux_step_post_make_install() {
install -Dm644 /dev/null "$TERMUX_PREFIX"/share/bash-completion/completions/atuin
install -Dm644 /dev/null "$TERMUX_PREFIX"/share/zsh/site-functions/_atuin
install -Dm644 /dev/null "$TERMUX_PREFIX"/share/fish/vendor_completions.d/atuin.fish
}
termux_step_create_debscripts() {
cat <<-EOF >./postinst
#!${TERMUX_PREFIX}/bin/sh
atuin gen-completions -s bash > ${TERMUX_PREFIX}/share/bash-completion/completions/atuin
atuin gen-completions -s zsh > ${TERMUX_PREFIX}/share/zsh/site-functions/_atuin
atuin gen-completions -s fish > ${TERMUX_PREFIX}/share/fish/vendor_completions.d/atuin.fish
EOF
}