wok view python-html2text/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 1bdd385c6df5
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="python-html2text"
4 VERSION="2017.10.4"
5 SOURCE="html2text"
6 CATEGORY="network"
7 SHORT_DESC="Convert HTML into clean, easy-to-read markdown-formatted text."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL3"
10 TARBALL="${SOURCE}-${VERSION}.tar.gz"
11 WEB_SITE="http://alir3z4.github.io/html2text"
12 WGET_URL="https://github.com/Alir3z4/html2text/archive/$VERSION.tar.gz"
14 DEPENDS="python"
15 BUILD_DEPENDS="python-dev python-distribute python-setuptools"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py install --root="$DESTDIR" --optimize=1
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr $install/usr/share
27 cp -a $install/usr/lib $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 cp -a $src/docs $install/usr/share/doc
30 cp -a $src/COP* $src/RE* $install/usr/share/doc
31 }