wok view numpy/receipt @ rev 1433
Add: beecrypt and beecrypt-dev
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Wed Oct 01 00:01:24 2008 +0200 (2008-10-01) |
parents | |
children | 3d99ecce2d4b |
line source
1 # SliTaz package receipt.
3 PACKAGE="numpy"
4 VERSION="1.1.1"
5 CATEGORY="development"
6 SHORT_DESC="scientific computing library for the Python."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://numpy.scipy.org/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 DEPENDS="python"
12 BUILD_DEPENDS="python"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 python setup.py build
19 python setup.py install --root=$PWD/_pkg
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 cp -a $_pkg/usr $fs
26 }