wok annotate python-pyte/receipt @ rev 24063
Fix sane-backends-dev
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jun 12 09:56:19 2021 +0000 (2021-06-12) |
parents | f8c87367c74d |
children | 104a2a2e5484 |
rev | line source |
---|---|
paul@18817 | 1 # SliTaz package receipt. |
paul@18817 | 2 |
paul@18817 | 3 PACKAGE="python-pyte" |
paul@18817 | 4 SOURCE="pyte" |
paul@18817 | 5 VERSION="0.5.1" |
paul@18817 | 6 CATEGORY="development" |
paul@18817 | 7 SHORT_DESC="Simple VTXXX-compatible terminal emulator." |
paul@18817 | 8 MAINTAINER="paul@slitaz.org" |
paul@18817 | 9 LICENSE="LGPL3" |
paul@18817 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
paul@18817 | 11 WEB_SITE="http://pyte.readthedocs.org/en/latest/" |
paul@18817 | 12 WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" |
paul@18817 | 13 |
paul@18817 | 14 DEPENDS="python python-wcwidth" |
pascal@21582 | 15 BUILD_DEPENDS="wget python-setuptools python-dev python-wcwidth" |
paul@18817 | 16 |
paul@18817 | 17 # Rules to configure and make the package. |
paul@18817 | 18 compile_rules() |
paul@18817 | 19 { |
paul@18817 | 20 python setup.py install --root=$DESTDIR |
paul@18817 | 21 } |
paul@18817 | 22 |
paul@18817 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@18817 | 24 genpkg_rules() |
paul@18817 | 25 { |
paul@18817 | 26 cp -a $install/usr $fs |
paul@18817 | 27 } |
paul@18817 | 28 |