wok view setuptools/receipt @ rev 16061

ARM: add libtool and xorg-xkbcomp
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 12 01:19:59 2014 +0100 (2014-03-12)
parents b4de8eb78082
children 7d672a2330b8
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 LICENSE="PSL"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://pypi.python.org/pypi/setuptools"
11 WGET_URL="http://pypi.python.org/packages/source/s/setuptools/$TARBALL"
12 DEPENDS="python python-dev"
13 BUILD_DEPENDS="python 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=$DESTDIR
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cp -a $install/usr $fs
27 }