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