wok view flake8/receipt @ rev 20673

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 17:15:36 2019 +0100 (2019-01-24)
parents 0a8635d4a41c
children 9e09019c3f53
line source
1 # SliTaz package receipt.
3 PACKAGE="flake8"
4 VERSION="2.2.4"
5 CATEGORY="development"
6 SHORT_DESC="The modular source code checker for python."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://pypi.python.org/pypi/flake8"
11 WGET_URL="https://pypi.python.org/packages/source/${PACKAGE:0:1}/$PACKAGE/$TARBALL"
13 DEPENDS="python"
14 BUILD_DEPENDS="wget python setuptools"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 python setup.py build &&
20 python setup.py install --root=$DESTDIR
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cp -a $install/usr $fs/
27 }