wok-current annotate pymux/receipt @ rev 18915
Add: GNU Unifont UTF-8. Tag: TrueType. GPL2 License.
author | Leonardo Laporte <hackdorte@sapo.pt> |
---|---|
date | Wed Feb 24 06:53:25 2016 -0300 (2016-02-24) |
parents | |
children | 5d50a02468c7 |
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" |
paul@18822 | 14 BUILD_DEPENDS="wget 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 |