wok view pyhn/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents 24892e271649
children 095836df71b7
line source
1 # SliTaz package receipt.
3 PACKAGE="pyhn"
4 VERSION="0.3.9"
5 CATEGORY="utilities"
6 SHORT_DESC="Hacker news command line client."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/socketubs/pyhn"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="git|git://github.com/socketubs/pyhn"
13 DEPENDS="python python-urwid"
14 BUILD_DEPENDS="python-dev python-urwid git bzip2"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # hack config.py
20 cd $src/pyhn
21 sed -i 's/__default__/tazweb __url__/; \
22 s/black||/light red||/' config.py
24 cd $src
25 python setup.py install --root=$DESTDIR
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/usr $fs
32 }