wok view python-numpy/receipt @ rev 19294

sane-backends, scons, scrot, shell-fm, smake, soundtouch, wireless_tools: fix man or doc path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 06 16:30:34 2016 +0200 (2016-07-06)
parents 1067bb7f1e24
children 8dd8bab3f0ca
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 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://numpy.scipy.org/"
12 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
14 DEPENDS="python"
15 BUILD_DEPENDS="python python-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 {
21 python setup.py build &&
22 python setup.py install --root=$DESTDIR
23 } 2>&1 | grep -Ev '(conftest.c:|configtest.c:)'
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/usr $fs
30 }
32 # Remove old package.
33 post_install()
34 {
35 [ ! -d "$1/var/lib/tazpkg/installed/numpy" ] ||
36 rm -rf "$1/var/lib/tazpkg/installed/numpy"
37 }