wok view python-requests/receipt @ rev 17045

Up: firefox-official (31.0)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Aug 19 23:37:07 2014 +0200 (2014-08-19)
parents
children 5b063a7e40ae
line source
1 # SliTaz package receipt.
3 PACKAGE="python-requests"
4 VERSION="2.3.0"
5 CATEGORY="network"
6 SHORT_DESC="Python HTTP Requests for Humans"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="Apache2"
9 WEB_SITE="http://python-requests.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/kennethreitz/requests/archive/v$VERSION.tar.gz"
13 DEPENDS="python"
14 BUILD_DEPENDS="python wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 python setup.py install --no-compile --root=$install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 cp -a $install/* $fs
26 }