wok-current view paramiko/receipt @ rev 25792
Fix openbox menu, label keymap on lxpanel and add miss it translation for tazpkg
| author | Stanislas Leduc <shann@slitaz.org> | 
|---|---|
| date | Tue Oct 07 05:55:24 2025 +0000 (3 weeks ago) | 
| parents | ac8ca9758df1 | 
| children | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="paramiko"
     4 VERSION="2.11.0"
     5 CATEGORY="development"
     6 TAGS="ssh"
     7 SHORT_DESC="Module for python that implements the SSH2 protocol."
     8 MAINTAINER="pascal.bellard@slitaz.org"
     9 LICENSE="LGPL2.1"
    10 WEB_SITE="https://www.paramiko.org/"
    12 TARBALL="$PACKAGE-$VERSION.tar.gz"
    13 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$VERSION.tar.gz"
    15 DEPENDS="python-bcrypt python-cryptography python-pynacl python-pyasn1"
    16 BUILD_DEPENDS="python python-setuptools"
    18 current_version()
    19 {
    20 	wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
    21 	sed '/archive.*tar/!d;s|.*/\(.*\).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 }