wok view python-restkit/receipt @ rev 16700

Up: slitaz-base-files (5.6.3): fix bug with installing coreutils-line package
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon May 26 16:03:09 2014 +0300 (2014-05-26)
parents a9673381f756
children 7390f8de9846
line source
1 # SliTaz package receipt.
3 PACKAGE="python-restkit"
4 SOURCE="restkit"
5 VERSION="4.2.1"
6 CATEGORY="development"
7 SHORT_DESC="An HTTP resource kit for Python"
8 MAINTAINER="claudinei@slitaz.org"
9 LICENSE="MIT"
10 TARBALL="$SOURCE-$VERSION.zip"
11 WEB_SITE="http://restkit.readthedocs.org"
12 WGET_URL="https://github.com/benoitc/$SOURCE/archive/$VERSION.zip"
14 DEPENDS="python python-http-parser python-socketpool"
15 BUILD_DEPENDS="python-dev setuptools 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 mkdir -p $fs/usr
28 rm -rf $install/usr/restkit
29 cp -a $install/usr $fs
30 }