wok annotate pychart/receipt @ rev 2739

Add locale-ru (hungarian) language pack
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 25 00:50:42 2009 +0200 (2009-04-25)
parents
children
rev   line source
pascal@2202 1 # SliTaz package receipt.
pascal@2202 2
pascal@2202 3 PACKAGE="pychart"
pascal@2202 4 VERSION="1.39"
pascal@2202 5 CATEGORY="development"
pascal@2202 6 SHORT_DESC="Python library for creating EPS, PDF, PNG or SVG."
pascal@2202 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2202 8 SOURCE="PyChart"
pascal@2202 9 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@2202 10 WEB_SITE="http://home.gna.org/pychart/"
pascal@2202 11 WGET_URL="http://download.gna.org/$PACKAGE/$TARBALL"
pascal@2202 12 DEPENDS="python"
pascal@2202 13
pascal@2202 14 # Rules to configure and make the package.
pascal@2202 15 compile_rules()
pascal@2202 16 {
pascal@2202 17 cd $src
pascal@2202 18 python setup.py build
pascal@2202 19 python setup.py install --root=$PWD/_pkg
pascal@2202 20 }
pascal@2202 21
pascal@2202 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2202 23 genpkg_rules()
pascal@2202 24 {
pascal@2202 25 mkdir -p $fs
pascal@2202 26 cp -a $_pkg/usr $fs
pascal@2202 27 }
pascal@2202 28