wok view pymux/receipt @ rev 24360

ardour: give gcc83 a try
author Hans-G?nter Theisgen
date Fri Feb 04 07:19:07 2022 +0100 (2022-02-04)
parents 78a8b309d305
children 076f424196b2
line source
1 # SliTaz package receipt.
3 PACKAGE="pymux"
4 VERSION="0.14"
5 CATEGORY="utilities"
6 SHORT_DESC="A terminal multiplexer (like tmux) in Python."
7 MAINTAINER="paul@slitaz.org"
8 WEB_SITE="https://github.com/jonathanslenders/pymux"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://pypi.python.org/packages/source/p/$PACKAGE/$TARBALL"
13 DEPENDS="python python-docopt python-prompt-toolkit python-pyte"
14 BUILD_DEPENDS="python-dev python-docopt python-prompt-toolkit python-pyte
15 python-setuptools"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - $WEB_SITE/tags 2>/dev/null | \
21 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 python setup.py install --root=$DESTDIR
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs
34 }