SliTaz Packages

Community Doc Forum Pro Shop Bugs Hg
.

Receipt for package "python-numpy"

# SliTaz package receipt.

PACKAGE="python-numpy"
VERSION="1.16.6"    # last version fpr Python 2
CATEGORY="development"
SHORT_DESC="Scientific computing library for the Python."
MAINTAINER="pascal.bellard@slitaz.org"
LICENSE="BSD"
WEB_SITE="https://pypi.org/project/numpy/"
REPOLOGY="python:numpy"

SOURCE="numpy"
TARBALL="$SOURCE-$VERSION.zip"
WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"

DEPENDS="python"
BUILD_DEPENDS="python python-cython python-dev python-setuptools"

# What is the latest version available today?
current_version()
{
    wget -O - https://github.com/numpy/numpy/releases 2>/dev/null | \
    sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
}

# Rules to configure and make the package.
compile_rules()
{
    {
    python setup.py build &&
    python setup.py install --root=$DESTDIR
    } 2>&1 | grep -Ev '(conftest.c:|configtest.c:)'
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
    cp -a $install/usr    $fs
}

# Remove old package.
post_install()
{
    [ ! -d "$1/var/lib/tazpkg/installed/numpy" ] ||
    rm -rf "$1/var/lib/tazpkg/installed/numpy"
}
5935 packages and 845883 files in cooking database (Sun Jun 30 00:45:24 2024)