mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-04 03:40:08 +00:00
due to packaging policy. It is installable through pip with some trivial workaround. Pretty much a borderline case though. See discussions in https://github.com/termux/termux-packages/issues/13785.
29 lines
958 B
Bash
29 lines
958 B
Bash
TERMUX_PKG_HOMEPAGE=https://pandas.pydata.org/
|
|
TERMUX_PKG_DESCRIPTION="Powerful Python data analysis toolkit"
|
|
TERMUX_PKG_LICENSE="BSD 3-Clause"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=1.5.3
|
|
TERMUX_PKG_SRCURL=https://github.com/pandas-dev/pandas/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=d8abf9c2bf33cac75b28f32c174c29778414eb249e5e2ccb69b1079b97a8fc66
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="libc++, python, python-numpy, python-pip"
|
|
TERMUX_PKG_PYTHON_COMMON_DEPS="Cython, numpy, wheel"
|
|
TERMUX_PKG_PYTHON_TARGET_DEPS="python-dateutil, pytz"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS+=" -lm"
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
pip install --no-deps --no-build-isolation . --prefix $TERMUX_PREFIX
|
|
}
|
|
|
|
termux_step_create_debscripts() {
|
|
cat <<- EOF > ./postinst
|
|
#!$TERMUX_PREFIX/bin/sh
|
|
echo "Installing dependencies through pip..."
|
|
pip3 install ${TERMUX_PKG_PYTHON_TARGET_DEPS//, / }
|
|
EOF
|
|
}
|