wok view python-restclient/receipt @ rev 20682

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 27 17:42:10 2019 +0100 (2019-01-27)
parents 7390f8de9846
children 814362194a8d
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 LICENSE="MIT"
10 TARBALL="$PACKAGE-$VERSION.tgz"
11 WEB_SITE="https://bitbucket.org/benoitc/$SOURCE"
12 WGET_URL="$WEB_SITE/get/$VERSION.gz"
14 DEPENDS="python python-httplib2"
15 BUILD_DEPENDS="python python-dev setuptools"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py install --root=$DESTDIR
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/')
27 mkdir -p $fs/usr
28 rm -f $install/usr/lib/$PYTHON_LIB/site-packages/tests/*
29 rmdir $install/usr/lib/$PYTHON_LIB/site-packages/tests
30 cp -a $install/usr $fs
31 }