wok view python-distribute/receipt @ rev 16124

ARM: add aalib
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 23 22:40:07 2014 +0100 (2014-03-23)
parents 96be8cdaf5bf
children 7d672a2330b8
line source
1 # SliTaz package receipt.
3 PACKAGE="python-distribute"
4 VERSION="0.6.49"
5 CATEGORY="development"
6 SHORT_DESC="Easily build and distribute Python packages"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="PSL"
9 WEB_SITE="http://pypi.python.org/pypi/distribute"
10 SOURCE="distribute"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="https://pypi.python.org/packages/source/d/distribute/$TARBALL"
14 DEPENDS="python"
15 BUILD_DEPENDS="python-dev wget"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 python setup.py install --prefix=/usr --root=$DESTDIR
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $install/* $fs
28 }