wok annotate pyvim/receipt @ rev 23033
updated libgdiplus and libggdiplus-dev again (2.10 -> 6.0.4)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 04 07:21:48 2020 +0100 (2020-03-04) |
parents | df7942dc271b |
children | 341e72d2d146 |
rev | line source |
---|---|
paul@18825 | 1 # SliTaz package receipt. |
paul@18825 | 2 |
paul@18825 | 3 PACKAGE="pyvim" |
paul@18825 | 4 SOURCE="pyvim" |
paul@18825 | 5 VERSION="0.0.13" |
paul@18825 | 6 CATEGORY="development" |
paul@18825 | 7 SHORT_DESC="Pure Python Vi Implementation." |
paul@18825 | 8 MAINTAINER="paul@slitaz.org" |
paul@18825 | 9 TARBALL="$SOURCE-$VERSION.tar.gz" |
paul@18825 | 10 WEB_SITE="https://github.com/jonathanslenders/pyvim" |
paul@18825 | 11 WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" |
paul@18825 | 12 |
paul@18825 | 13 DEPENDS="python python-prompt-toolkit ptpython python-docopt python-pyflakes" |
pascal@21581 | 14 BUILD_DEPENDS="wget python-prompt-toolkit ptpython python-docopt python-pyflakes python-setuptools python-dev" |
paul@18825 | 15 |
paul@18825 | 16 # Rules to configure and make the package. |
paul@18825 | 17 compile_rules() |
paul@18825 | 18 { |
paul@18825 | 19 python setup.py install --root=$DESTDIR |
paul@18825 | 20 } |
paul@18825 | 21 |
paul@18825 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@18825 | 23 genpkg_rules() |
paul@18825 | 24 { |
paul@18825 | 25 cp -a $install/usr $fs |
paul@18825 | 26 } |
paul@18825 | 27 |