Files
termux-packages/packages/angle-grinder/build.sh
termux-pacman-bot 04c66ffb15 bump(main/angle-grinder): 0.19.4
This commit has been automatically submitted by Github Actions.
2024-07-11 18:38:55 +00:00

21 lines
710 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/rcoh/angle-grinder
TERMUX_PKG_DESCRIPTION="Slice and dice logs on the command line"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.19.4"
TERMUX_PKG_SRCURL="https://github.com/rcoh/angle-grinder/archive/v$TERMUX_PKG_VERSION.tar.gz"
TERMUX_PKG_SHA256=13ae3912dcc34c2648d8ef57fe8d976cb978c70e6976ead079ea5d7609532172
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
# ```
# ld: error: undefined symbol: __emutls_get_address
# ```
# It isn't able to find/link with `libgcc` during arm build.
if [[ "${TERMUX_ARCH}" == "arm" ]]; then
RUSTFLAGS+=" -C link-arg=$($CC -print-libgcc-file-name)"
fi
}