wok-next view python-numpy/receipt @ rev 20037

Up sshttp (0-35s2), sshguard (2.0.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 22 18:48:45 2017 +0200 (2017-10-22)
parents 9e01bc6321ea
children 0e7893ac206d
line source
1 # SliTaz package receipt.
3 PACKAGE="python-numpy"
4 SOURCE="numpy"
5 VERSION="1.10.1"
6 CATEGORY="development"
7 SHORT_DESC="Scientific computing library for the Python"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="BSD"
10 WEB_SITE="http://numpy.scipy.org/"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
15 DEPENDS="python"
16 BUILD_DEPENDS="python python-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 {
22 python setup.py build &&
23 python setup.py install --root=$DESTDIR
24 } 2>&1 | grep -Ev '(conftest.c:|configtest.c:)'
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 copy @std @dev
31 }