wok view python-sphinx/receipt @ rev 5155

lxpanel: add tazctrlbox to config file
author Rohit Joshi <jozee@slitaz.org>
date Wed Mar 24 06:59:27 2010 -0400 (2010-03-24)
parents 3ae7a1c63bcd
children bf4a09ef1d2e
line source
1 # SliTaz package receipt.
3 PACKAGE="python-sphinx"
4 SOURCE="Sphinx"
5 VERSION="0.6.3"
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 python-docutils python-jinja2 python-pygments setuptools"
13 BUILD_DEPENDS="$DEPENDS python-dev"
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 }
30 # Remove old package.
31 post_install()
32 {
33 rm -rf $1/var/lib/tazpkg/installed/sphinx
34 }