mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-12 21:00:57 +00:00
Removing maintainers if there was no activity after pull request merging or if there was no activity in the last two years [no ci]
24 lines
748 B
Bash
24 lines
748 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="0.9.38"
|
|
TERMUX_PKG_SRCURL=https://github.com/mitnk/cicada/archive/v$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=7ba8980a53707549b35a274b0a332623e79d419109c427d2481e2ffcc7d4ba3a
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_BLACKLISTED_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
|
|
RUSTFLAGS+=" -C link-arg=$($CC -print-libgcc-file-name)"
|
|
echo "INPUT(-l:libunwind.a)" > libgcc.so
|
|
popd
|
|
fi
|
|
}
|