wok annotate pssh/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents 8a238554f731
children 104a2a2e5484
rev   line source
pascal@22685 1 # SliTaz package receipt.
pascal@22685 2
pascal@22685 3 PACKAGE="pssh"
pascal@22686 4 VERSION="2.3.1"
pascal@22685 5 CATEGORY="network"
pascal@22685 6 SHORT_DESC="Parallel versions of the openssh tools"
pascal@22685 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@22685 8 LICENSE="BSD"
pascal@22685 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@22688 10 WEB_SITE="https://pypi.org/project/pssh/"
pascal@22686 11 WGET_URL="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/parallel-ssh/$TARBALL"
pascal@22685 12 TAGS="ssh"
pascal@22685 13
pascal@22685 14 DEPENDS="python"
pascal@22685 15 BUILD_DEPENDS="python-setuptools"
pascal@22685 16
pascal@22685 17 # Rules to configure and make the package.
pascal@22685 18 compile_rules()
pascal@22685 19 {
pascal@22685 20 python setup.py build &&
pascal@22685 21 python setup.py install --root=$DESTDIR
pascal@22685 22 }
pascal@22685 23
pascal@22685 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@22685 25 genpkg_rules()
pascal@22685 26 {
pascal@22686 27 mkdir $fs/usr
pascal@22686 28 cp -a $install/usr/bin $fs/usr/
pascal@22686 29 cp -a $install/usr/lib $fs/usr/
pascal@22685 30 }