# HG changeset patch # User Pascal Bellard # Date 1218643797 0 # Node ID e50bf461524d7b13a8c65cecf27cf3d37f1cde31 # Parent 9d977ed81a8c4e8765d93d23710ef358c561612a Add numpy & matplotlib diff -r 9d977ed81a8c -r e50bf461524d matplotlib/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/matplotlib/receipt Wed Aug 13 16:09:57 2008 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="matplotlib" +VERSION="0.98.3" +CATEGORY="graphics" +SHORT_DESC="2D plotting library for the Python." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://matplotlib.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +DEPENDS="python zlib libpng freetype numpy" +BUILD_DEPENDS="python python-dev zlib-dev libpng-dev freetype-devel numpy" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} + diff -r 9d977ed81a8c -r e50bf461524d numpy/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/numpy/receipt Wed Aug 13 16:09:57 2008 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="numpy" +VERSION="1.1.1" +CATEGORY="development" +SHORT_DESC="scientific computing library for the Python." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://numpy.scipy.org/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} +