24 lines
759 B
Bash
24 lines
759 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/mitnk/cicada
|
|
TERMUX_PKG_DESCRIPTION="A bash like Unix shell"
|
|
TERMUX_PKG_MAINTAINER="Hugo Wang <w@mitnk.com>"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_VERSION=0.9.29
|
|
TERMUX_PKG_SRCURL=https://github.com/mitnk/cicada/archive/v$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=74a46ee7a25c65eb6d934888ca224821f25f38c537f8cf0fca5a8077b46a900b
|
|
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
|
|
local libgcc="$($CC -print-libgcc-file-name)"
|
|
echo "INPUT($libgcc -l:libunwind.a)" > libgcc.so
|
|
popd
|
|
fi
|
|
}
|