wok annotate pyvim/receipt @ rev 19294

sane-backends, scons, scrot, shell-fm, smake, soundtouch, wireless_tools: fix man or doc path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 06 16:30:34 2016 +0200 (2016-07-06)
parents
children 5d50a02468c7
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"
paul@18825 14 BUILD_DEPENDS="wget python-prompt-toolkit ptpython python-docopt python-pyflakes 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