wok annotate pymux/receipt @ rev 22868

updated gnutls and gnutls-dev again (3.3.16 -> 3.6.12)
author Hans-G?nter Theisgen
date Fri Feb 21 15:22:35 2020 +0100 (2020-02-21)
parents f83c9673175d
children 78a8b309d305
rev   line source
paul@18822 1 # SliTaz package receipt.
paul@18822 2
paul@18822 3 PACKAGE="pymux"
paul@18822 4 SOURCE="pymux"
paul@18822 5 VERSION="0.6"
paul@18822 6 CATEGORY="utilities"
paul@18822 7 SHORT_DESC="A terminal multiplexer (like tmux) in Python."
paul@18822 8 MAINTAINER="paul@slitaz.org"
paul@18822 9 TARBALL="$SOURCE-$VERSION.tar.gz"
paul@18822 10 WEB_SITE="https://github.com/jonathanslenders/pymux"
paul@18822 11 WGET_URL="https://pypi.python.org/packages/source/p/$SOURCE/$TARBALL"
paul@18822 12
paul@18822 13 DEPENDS="python python-pyte python-prompt-toolkit python-docopt"
pascal@21581 14 BUILD_DEPENDS="wget python-setuptools python-dev python-pyte python-prompt-toolkit python-docopt"
paul@18822 15
paul@18822 16 # Rules to configure and make the package.
paul@18822 17 compile_rules()
paul@18822 18 {
paul@18822 19 python setup.py install --root=$DESTDIR
paul@18822 20 }
paul@18822 21
paul@18822 22 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@18822 23 genpkg_rules()
paul@18822 24 {
paul@18822 25 cp -a $install/usr $fs
paul@18822 26 }
paul@18822 27