wok view python-restclient/receipt @ rev 15123

htmldoc: fix bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 14 22:27:18 2013 +0000 (2013-08-14)
parents 99b42fdb85c9
children bf4a09ef1d2e
line source
1 # SliTaz package receipt.
3 PACKAGE="python-restclient"
4 SOURCE="py-restclient"
5 VERSION="1.3.2"
6 CATEGORY="development"
7 SHORT_DESC="A simple REST client for python"
8 MAINTAINER="claudinei@slitaz.org"
9 DEPENDS="python python-httplib2"
10 BUILD_DEPENDS="python python-dev setuptools"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WEB_SITE="http://bitbucket.org/benoitc/$SOURCE"
13 WGET_URL="$WEB_SITE/get/$VERSION.gz"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python setup.py install --root=$DESTDIR
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/')
26 mkdir -p $fs/usr
27 rm -f $install/usr/lib/$PYTHON_LIB/site-packages/tests/*
28 rmdir $install/usr/lib/$PYTHON_LIB/site-packages/tests
29 cp -a $install/usr $fs
30 }