wok-next annotate python-prompt-toolkit/receipt @ rev 18985
Add: Backgrounds created by the community. See: https://github.com/hackdorte/slitaz-community-backgrounds
author | Leonardo Laporte <hackdorte@sapo.pt> |
---|---|
date | Thu Mar 17 00:11:28 2016 -0300 (2016-03-17) |
parents | |
children | 6c73b944e8dd |
rev | line source |
---|---|
paul@18821 | 1 # SliTaz package receipt. |
paul@18821 | 2 |
paul@18821 | 3 PACKAGE="python-prompt-toolkit" |
paul@18821 | 4 SOURCE="prompt_toolkit" |
paul@18821 | 5 VERSION="0.57" |
paul@18821 | 6 CATEGORY="development" |
paul@18821 | 7 SHORT_DESC="Library for building powerful interactive command lines in Python." |
paul@18821 | 8 MAINTAINER="paul@slitaz.org" |
paul@18821 | 9 TARBALL="$SOURCE-$VERSION.tar.gz" |
paul@18821 | 10 WEB_SITE="https://github.com/jonathanslenders/python-prompt-toolkit" |
paul@18821 | 11 WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" |
paul@18821 | 12 |
paul@18821 | 13 DEPENDS="python python-six python-pygments python-wcwidth" |
paul@18821 | 14 BUILD_DEPENDS="wget setuptools python-dev python-six python-pygments python-wcwidth" |
paul@18821 | 15 |
paul@18821 | 16 # Rules to configure and make the package. |
paul@18821 | 17 compile_rules() |
paul@18821 | 18 { |
paul@18821 | 19 python setup.py install --root=$DESTDIR |
paul@18821 | 20 } |
paul@18821 | 21 |
paul@18821 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@18821 | 23 genpkg_rules() |
paul@18821 | 24 { |
paul@18821 | 25 cp -a $install/usr $fs |
paul@18821 | 26 } |
paul@18821 | 27 |