0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-28 13:42:38 +00:00
Files
termux-packages/packages/cicada/build.sh
Termux Github Actions 0a76ee8c72 bump(main/cicada): 1.1.2
This commit has been automatically submitted by Github Actions.
2025-04-19 06:09:49 +00:00

25 lines
863 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/mitnk/cicada
TERMUX_PKG_DESCRIPTION="A bash like Unix shell"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_VERSION="1.1.2"
TERMUX_PKG_SRCURL=https://github.com/mitnk/cicada/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=fa98e4b15d62ce0343d69a9f51d737fe02b8200f5903c14f5131dec6c7a54656
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXCLUDED_ARCHES="arm, i686"
termux_step_pre_configure() {
rm -f Makefile
if [ "$TERMUX_ARCH" == "x86_64" ]; then
local libdir=target/x86_64-linux-android/release/deps
mkdir -p $libdir
pushd $libdir
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)"
echo "INPUT(-l:libunwind.a)" > libgcc.so
popd
fi
}