wok view python-pyflakes/receipt @ rev 23999

syslinux/iso2exe: read isolinux.cfg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 12 07:47:12 2021 +0000 (2021-01-12)
parents 814362194a8d
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pyflakes"
4 VERSION="2.1.1"
5 CATEGORY="development"
6 SHORT_DESC="A simple program which checks Python source files for errors."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/pyflakes/pyflakes"
11 SOURCE="pyflakes"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/PyCQA/pyflakes/archive/$VERSION.tar.gz"
15 DEPENDS="python"
16 BUILD_DEPENDS="python python-dev python-setuptools"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 python setup.py install --root=$DESTDIR
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $install/usr $fs
28 }