wok annotate sshproxy/receipt @ rev 6931
Added make check to elfutils to see if fixes build problem.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat Oct 23 00:00:53 2010 +0000 (2010-10-23) |
parents | |
children | 6d7a96eedc9d |
rev | line source |
---|---|
pascal@4561 | 1 # SliTaz package receipt. |
pascal@4561 | 2 |
pascal@4561 | 3 PACKAGE="sshproxy" |
pascal@4561 | 4 VERSION="0.6.0_beta2" |
pascal@4561 | 5 CATEGORY="network" |
pascal@4561 | 6 SHORT_DESC="SSH proxy to connect without passwords or keys." |
pascal@4561 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@4561 | 8 #TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@4561 | 9 TARBALL="sshproxy_0.6.0~beta2.orig.tar.gz" |
pascal@4561 | 10 WEB_SITE="http://sshproxy-project.org/" |
pascal@4561 | 11 #WGET_URL="${WEB_SITE}download/$TARBALL" |
pascal@4561 | 12 WGET_URL="http://ftp.de.debian.org/debian/pool/main/s/sshproxy/$TARBALL" |
pascal@4561 | 13 DEPENDS="python paramiko python-mysql" |
pascal@4561 | 14 BUILD_DEPENDS="python paramiko python-mysql" |
pascal@4561 | 15 |
pascal@4561 | 16 # Rules to configure and make the package. |
pascal@4561 | 17 compile_rules() |
pascal@4561 | 18 { |
pascal@4561 | 19 cd $src |
pascal@4561 | 20 python setup.py install --root=$PWD/_pkg |
pascal@4561 | 21 } |
pascal@4561 | 22 |
pascal@4561 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4561 | 24 genpkg_rules() |
pascal@4561 | 25 { |
pascal@4561 | 26 cp -a $_pkg/usr $fs |
pascal@4561 | 27 } |
pascal@4561 | 28 |