wok view setuptools/receipt @ rev 21160

Up ufraw (0.22)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 31 15:04:44 2019 +0200 (2019-03-31)
parents 7d672a2330b8
children
line source
1 # SliTaz package receipt.
3 PACKAGE="setuptools"
4 VERSION="4.0.1"
5 CATEGORY="misc"
6 SHORT_DESC="Python package installation tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="PSL"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://pypi.python.org/pypi/setuptools"
11 WGET_URL="https://bitbucket.org/pypa/setuptools/get/$VERSION.tar.bz2"
12 HOST_ARCH="i486 arm"
14 DEPENDS="python"
15 BUILD_DEPENDS="python wget"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py install --no-compile --root=$install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cp -a $install/* $fs
27 }