wok view setuptools/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents 1d3c2a6a390f
children 600aaedb561d
line source
1 # SliTaz package receipt.
3 PACKAGE="setuptools"
4 VERSION="0.6c11"
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 }