wok annotate python-ofxparse/receipt @ rev 19294

sane-backends, scons, scrot, shell-fm, smake, soundtouch, wireless_tools: fix man or doc path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 06 16:30:34 2016 +0200 (2016-07-06)
parents 7390f8de9846
children 814362194a8d
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@17959 15 BUILD_DEPENDS="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