06f0f909e2
Needs patching due to error:
aarch64-linux-android-clang -DCALC_SRC -DCUSTOM -Wall -march=native -fPIC -O3 -g3 -I.. -I/data/data/com.termux/files/usr/include -c -o custtbl.o custtbl.c
clang: error: the clang compiler does not support '-march=native'
***
This reverts commit 087382e27b
.
24 lines
989 B
Bash
24 lines
989 B
Bash
TERMUX_PKG_HOMEPAGE=http://www.isthe.com/chongo/tech/comp/calc/
|
|
TERMUX_PKG_DESCRIPTION="Arbitrary precision console calculator"
|
|
TERMUX_PKG_LICENSE="LGPL-2.1"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=2.12.7.2
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=http://www.isthe.com/chongo/src/calc/calc-${TERMUX_PKG_VERSION}.tar.bz2
|
|
TERMUX_PKG_SHA256=57af44181ca3af7348c82ee628cfd221677a09fef11a29d2e5667726d5aafc90
|
|
TERMUX_PKG_DEPENDS="ncurses, ncurses-ui-libs, readline"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_make() {
|
|
# Fails with -j$TERMUX_MAKE_PROCESSES for some reason
|
|
make USE_READLINE="-DUSE_READLINE" READLINE_EXTRAS="-lhistory -lncurses" \
|
|
READLINE_LIB="-L$TERMUX_PREFIX/lib -lreadline" \
|
|
READLINE_INCLUDE="-I$TERMUX_PREFIX/include" \
|
|
DEFAULT_LIB_INSTALL_PATH="$TERMUX_PREFIX/lib" CC="$CC" -j1
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
make T="$TERMUX_PREFIX" BINDIR="/bin" LIBDIR="/lib" INCDIR="/include" \
|
|
SCRIPTDIR="/share/calc/cscript" CALC_SHAREDIR="/share/calc" install
|
|
}
|