wok annotate python-whoosh/receipt @ rev 22760

updated findutils (4.6.0 -> 4.7.0)
author Hans-G?nter Theisgen
date Fri Jan 24 17:10:12 2020 +0100 (2020-01-24)
parents 7390f8de9846
children 2de18cf22f08
rev   line source
pascal@17198 1 # SliTaz package receipt.
pascal@17198 2
pascal@17198 3 PACKAGE="python-whoosh"
pascal@17198 4 SOURCE="Whoosh"
pascal@17198 5 VERSION="2.5.7"
pascal@17198 6 CATEGORY="development"
pascal@17198 7 SHORT_DESC="Fast full text indexing, search, and spell checking library."
pascal@17198 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17198 9 LICENSE="BSD"
pascal@17198 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@17198 11 WEB_SITE="http://pypi.python.org/pypi/Whoosh/"
pascal@17198 12 WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
pascal@17198 13
pascal@17198 14 DEPENDS="python"
pascal@21582 15 BUILD_DEPENDS="python wget python-setuptools"
pascal@17198 16
pascal@17198 17 # Rules to configure and make the package.
pascal@17198 18 compile_rules()
pascal@17198 19 {
pascal@17198 20 python setup.py build
pascal@17198 21 python setup.py install --root=$DESTDIR
pascal@17198 22 }
pascal@17198 23
pascal@17198 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17198 25 genpkg_rules()
pascal@17198 26 {
pascal@17198 27 cp -a $install/* $fs
pascal@17198 28 }
al@18086 29