wok annotate paramiko/receipt @ rev 15375

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 18 19:43:55 2013 +0000 (2013-10-18)
parents ee036385c59a
children f44ef80ff9e2
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@15375 12
pascal@4560 13 DEPENDS="pycrypto"
pascal@4560 14
pascal@4560 15 # Rules to configure and make the package.
pascal@4560 16 compile_rules()
pascal@4560 17 {
pascal@4560 18 cd $src
slaxemulator@11056 19 python setup.py install --root=$DESTDIR
pascal@4560 20 }
pascal@4560 21
pascal@4560 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4560 23 genpkg_rules()
pascal@4560 24 {
pascal@15375 25 cp -a $install/usr $fs
pascal@4560 26 }
pascal@4560 27