wok annotate pymux/receipt @ rev 24155

linld : fix lm detection
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 06 16:44:52 2021 +0000 (2021-12-06)
parents 5d50a02468c7
children 095836df71b7
rev   line source
paul@18822 1 # SliTaz package receipt.
paul@18822 2
paul@18822 3 PACKAGE="pymux"
Hans-G?nter@23462 4 VERSION="0.14"
paul@18822 5 CATEGORY="utilities"
paul@18822 6 SHORT_DESC="A terminal multiplexer (like tmux) in Python."
paul@18822 7 MAINTAINER="paul@slitaz.org"
paul@18822 8 WEB_SITE="https://github.com/jonathanslenders/pymux"
paul@18822 9
Hans-G?nter@23462 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@23462 11 WGET_URL="https://pypi.python.org/packages/source/p/$PACKAGE/$TARBALL"
Hans-G?nter@23462 12
Hans-G?nter@23462 13 DEPENDS="python python-docopt python-prompt-toolkit python-pyte"
Hans-G?nter@23462 14 BUILD_DEPENDS="python-dev python-docopt python-prompt-toolkit python-pyte
Hans-G?nter@23462 15 python-setuptools"
paul@18822 16
paul@18822 17 # Rules to configure and make the package.
paul@18822 18 compile_rules()
paul@18822 19 {
paul@18822 20 python setup.py install --root=$DESTDIR
paul@18822 21 }
paul@18822 22
paul@18822 23 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@18822 24 genpkg_rules()
paul@18822 25 {
Hans-G?nter@23462 26 cp -a $install/usr $fs
paul@18822 27 }