wok-6.x rev 18825
Add pyvim
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sun Jan 17 09:32:09 2016 +0000 (2016-01-17) |
parents | 7efba77f8483 |
children | edcd0ce36fe8 |
files | ptpython/receipt pyvim/receipt |
line diff
1.1 --- a/ptpython/receipt Sat Jan 16 16:19:14 2016 +0100 1.2 +++ b/ptpython/receipt Sun Jan 17 09:32:09 2016 +0000 1.3 @@ -6,7 +6,6 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="Python REPL." 1.6 MAINTAINER="paul@slitaz.org" 1.7 -#LICENSE="MIT" 1.8 TARBALL="$SOURCE-$VERSION.tar.gz" 1.9 WEB_SITE="https://github.com/jonathanslenders/ptpython" 1.10 WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL"
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/pyvim/receipt Sun Jan 17 09:32:09 2016 +0000 2.3 @@ -0,0 +1,27 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="pyvim" 2.7 +SOURCE="pyvim" 2.8 +VERSION="0.0.13" 2.9 +CATEGORY="development" 2.10 +SHORT_DESC="Pure Python Vi Implementation." 2.11 +MAINTAINER="paul@slitaz.org" 2.12 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.13 +WEB_SITE="https://github.com/jonathanslenders/pyvim" 2.14 +WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" 2.15 + 2.16 +DEPENDS="python python-prompt-toolkit ptpython python-docopt python-pyflakes" 2.17 +BUILD_DEPENDS="wget python-prompt-toolkit ptpython python-docopt python-pyflakes setuptools python-dev" 2.18 + 2.19 +# Rules to configure and make the package. 2.20 +compile_rules() 2.21 +{ 2.22 + python setup.py install --root=$DESTDIR 2.23 +} 2.24 + 2.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.26 +genpkg_rules() 2.27 +{ 2.28 + cp -a $install/usr $fs 2.29 +} 2.30 +