wok-6.x annotate python-ofxparse/receipt @ rev 19512
busybox: add hd (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Nov 22 15:47:28 2016 +0100 (2016-11-22) |
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 |