wok-next annotate pymux/receipt @ rev 20907
slitaz-base-files: set correct SLITAZ_ARCH in slitaz.conf (affected x86_64) - thanks shann
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Aug 10 15:39:58 2018 +0300 (2018-08-10) |
parents | f83c9673175d |
children | 5fac1a2da249 |
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" |
al@20444 | 14 BUILD_DEPENDS="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 |