wok view sphinx/receipt @ rev 3294

Update: Separate out gcj in h8/300 tools for smaller package sizes
author Matthew Sheets <rcx@zoominternet.net>
date Thu Jun 04 10:46:22 2009 +0000 (2009-06-04)
parents de77a9d75999
children
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 setuptools"
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 }