wok view python-numpy/receipt @ rev 20167

Up smtube, smplayer (18.1.0)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Thu Jan 11 13:05:26 2018 +0100 (2018-01-11)
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 }