wok annotate python-ofxparse/receipt @ rev 21582

Use python-setuptools as bdeps (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 19 19:45:04 2019 +0200 (2019-05-19)
parents 6210c69d09c2
children b3a4144020fb
rev   line source
pascal@17958 1 # SliTaz package receipt.
pascal@17958 2
pascal@17958 3 PACKAGE="python-ofxparse"
pascal@17958 4 SOURCE="ofxparse"
pascal@17958 5 VERSION="0.14"
pascal@17958 6 CATEGORY="development"
pascal@17958 7 SHORT_DESC="Tools for working with the OFX (Open Financial Exchange) file format."
pascal@17958 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17958 9 LICENSE="MIT"
pascal@17958 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@17958 11 WEB_SITE="https://pypi.python.org/pypi/ofxparse"
pascal@17958 12 WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
pascal@17958 13
pascal@18194 14 DEPENDS="python beautifulsoup"
pascal@21582 15 BUILD_DEPENDS="python python-setuptools"
pascal@17958 16
pascal@17958 17 # Rules to configure and make the package.
pascal@17958 18 compile_rules()
pascal@17958 19 {
pascal@17958 20 python setup.py install --root=$DESTDIR
pascal@17958 21 }
pascal@17958 22
pascal@17958 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17958 24 genpkg_rules()
pascal@17958 25 {
pascal@17958 26 cp -a $install/usr $fs
pascal@17958 27 }
al@18086 28