wok rev 18822

Add pymux
author Paul Issott <paul@slitaz.org>
date Sat Jan 16 09:54:54 2016 +0000 (2016-01-16)
parents 1945b5221729
children e574ee12df54
files pymux/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pymux/receipt	Sat Jan 16 09:54:54 2016 +0000
     1.3 @@ -0,0 +1,27 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="pymux"
     1.7 +SOURCE="pymux"
     1.8 +VERSION="0.6"
     1.9 +CATEGORY="utilities"
    1.10 +SHORT_DESC="A terminal multiplexer (like tmux) in Python."
    1.11 +MAINTAINER="paul@slitaz.org"
    1.12 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.13 +WEB_SITE="https://github.com/jonathanslenders/pymux"
    1.14 +WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL"
    1.15 +
    1.16 +DEPENDS="python python-pyte python-prompt-toolkit python-docopt"
    1.17 +BUILD_DEPENDS="wget setuptools python-dev python-pyte python-prompt-toolkit python-docopt"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	python setup.py install --root=$DESTDIR
    1.23 +}
    1.24 +
    1.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 +genpkg_rules()
    1.27 +{
    1.28 +	cp -a $install/usr $fs
    1.29 +}
    1.30 +