Files
termux-packages/packages/angle-grinder/build.sh
termux-pacman-bot 7a63d7bd6a bump(main/angle-grinder): 0.19.0
This commit has been automatically submitted by Github Actions.
2023-04-10 00:45:14 +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.0"
TERMUX_PKG_SRCURL="https://github.com/rcoh/angle-grinder/archive/v$TERMUX_PKG_VERSION.tar.gz"
TERMUX_PKG_SHA256=4051ad846ef7abacd41927d5e29ac4eb8ab29567a78e28727e1e8236cbaefeff
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
}