wok annotate python-pyflakes/receipt @ rev 21874

facter: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 28 11:31:06 2019 +0200 (2019-09-28)
parents 0a8213b51c21
children 23d1dbe1e6bb
rev   line source
paul@18819 1 # SliTaz package receipt.
paul@18819 2
paul@18819 3 PACKAGE="python-pyflakes"
paul@18819 4 SOURCE="pyflakes"
paul@20023 5 VERSION="1.6.0"
paul@18819 6 CATEGORY="development"
paul@18819 7 SHORT_DESC="A simple program which checks Python source files for errors."
paul@18819 8 MAINTAINER="paul@slitaz.org"
paul@18819 9 #LICENSE="MIT"
paul@18819 10 TARBALL="$SOURCE-$VERSION.tar.gz"
paul@18819 11 WEB_SITE="https://github.com/pyflakes/pyflakes"
pascal@20024 12 WGET_URL="https://github.com/PyCQA/pyflakes/archive/$VERSION.tar.gz"
paul@18819 13
paul@18819 14 DEPENDS="python"
pascal@21582 15 BUILD_DEPENDS="wget python-setuptools python-dev"
paul@18819 16
paul@18819 17 # Rules to configure and make the package.
paul@18819 18 compile_rules()
paul@18819 19 {
paul@18819 20 python setup.py install --root=$DESTDIR
paul@18819 21 }
paul@18819 22
paul@18819 23 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@18819 24 genpkg_rules()
paul@18819 25 {
paul@18819 26 cp -a $install/usr $fs
paul@18819 27 }
paul@18819 28