wok annotate paramiko/receipt @ rev 17141

Add some ssh tags
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 10 11:15:31 2014 +0200 (2014-09-10)
parents 51a1ebbda768
children 16df76e1fc6a
rev   line source
pascal@4560 1 # SliTaz package receipt.
pascal@4560 2
pascal@4560 3 PACKAGE="paramiko"
slaxemulator@11056 4 VERSION="1.7.7.1"
pascal@4560 5 CATEGORY="development"
pascal@4560 6 SHORT_DESC="module for python that implements the SSH2 protocol."
pascal@4560 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15375 8 LICENSE="LGPL2.1"
pascal@4560 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@4560 10 WEB_SITE="http://www.lag.net/paramiko"
pascal@4560 11 WGET_URL="$WEB_SITE/download/$TARBALL"
pascal@17141 12 TAGS="ssh"
pascal@15375 13
pascal@4560 14 DEPENDS="pycrypto"
pascal@4560 15
pascal@4560 16 # Rules to configure and make the package.
pascal@4560 17 compile_rules()
pascal@4560 18 {
pascal@4560 19 cd $src
slaxemulator@11056 20 python setup.py install --root=$DESTDIR
pascal@4560 21 }
pascal@4560 22
pascal@4560 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4560 24 genpkg_rules()
pascal@4560 25 {
pascal@15375 26 cp -a $install/usr $fs
pascal@4560 27 }
pascal@4560 28