mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2025-12-22 03:30:17 +00:00
Update repo
This commit is contained in:
28
disabled-packages/python-pandas/build.sh
Normal file
28
disabled-packages/python-pandas/build.sh
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user