wok view python-six/receipt @ rev 16348

Up: slitaz-base-files (5.5)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 13 01:42:13 2014 +0200 (2014-04-13)
parents 89ebfab6954d
children 7d672a2330b8
line source
1 # SliTaz package receipt.
3 PACKAGE="python-six"
4 SOURCE="six"
5 VERSION="1.3.0"
6 CATEGORY="development"
7 SHORT_DESC="Six is a Python 2 and 3 compatibility library."
8 MAINTAINER="claudinei@slitaz.org"
9 LICENSE="MIT"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://packages.python.org/six/"
12 WGET_URL="https://pypi.python.org/packages/source/s/$SOURCE/$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 --root=$DESTDIR
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $install/usr $fs
28 }