wok view sphinx/receipt @ rev 3257

Add: sphinx
author Claudinei Pereira <claudinei@slitaz.org>
date Mon Jun 01 00:44:30 2009 +0000 (2009-06-01)
parents
children 95f4cf5799db
line source
1 # SliTaz package receipt.
3 PACKAGE="sphinx"
4 SOURCE="Sphinx"
5 VERSION="0.6.1"
6 CATEGORY="utilities"
7 SHORT_DESC="Documentation Tool."
8 MAINTAINER="claudinei@slitaz.org"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://sphinx.pocoo.org"
11 WGET_URL="http://pypi.python.org/packages/source/S/$SOURCE/$TARBALL"
12 DEPENDS="python docutils jinja2 pygments"
13 BUILD_DEPENDS="python python-dev docutils jinja2 pygments setuptools"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python setup.py build &&
20 python setup.py install --root=$PWD/_pkg
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr $fs
28 }