wok view setuptools/receipt @ rev 5053

fix typos: libgphoto2
author Rohit Joshi <jozee@slitaz.org>
date Sat Mar 06 18:51:17 2010 +0000 (2010-03-06)
parents 3d99ecce2d4b
children b4de8eb78082
line source
1 # SliTaz package receipt.
3 PACKAGE="setuptools"
4 VERSION="0.6c9"
5 CATEGORY="misc"
6 SHORT_DESC="Python package installation tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://pypi.python.org/pypi/setuptools"
10 WGET_URL="http://pypi.python.org/packages/source/s/setuptools/$TARBALL"
11 DEPENDS="python python-dev"
12 BUILD_DEPENDS="python python-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 python setup.py build &&
19 python setup.py install --root=$PWD/_pkg
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 cp -a $_pkg/usr $fs
26 }