wok annotate paramiko/receipt @ rev 6343
Fixed vlc. Using ffmpeg instead of ffmpeg-svn since ffmpeg-svn can't be build.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Sep 19 14:05:10 2010 +0000 (2010-09-19) |
parents | |
children | ee036385c59a |
rev | line source |
---|---|
pascal@4560 | 1 # SliTaz package receipt. |
pascal@4560 | 2 |
pascal@4560 | 3 PACKAGE="paramiko" |
pascal@4560 | 4 VERSION="1.7.6" |
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 |
pascal@4560 | 17 python setup.py install --root=$PWD/_pkg |
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 |