wok annotate paramiko/receipt @ rev 14657

Normalize LICENSE according to wok/licenses package (bsd part)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 05 16:21:04 2013 +0200 (2013-06-05)
parents d703055a2571
children 51a1ebbda768
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@4560 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@4560 9 WEB_SITE="http://www.lag.net/paramiko"
pascal@4560 10 WGET_URL="$WEB_SITE/download/$TARBALL"
pascal@4560 11 DEPENDS="pycrypto"
pascal@4560 12
pascal@4560 13 # Rules to configure and make the package.
pascal@4560 14 compile_rules()
pascal@4560 15 {
pascal@4560 16 cd $src
slaxemulator@11056 17 python setup.py install --root=$DESTDIR
pascal@4560 18 }
pascal@4560 19
pascal@4560 20 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4560 21 genpkg_rules()
pascal@4560 22 {
pascal@4560 23 cp -a $_pkg/usr $fs
pascal@4560 24 }
pascal@4560 25