wok-6.x annotate sslh/receipt @ rev 10461
python-formencode: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed May 25 11:27:37 2011 +0200 (2011-05-25) |
parents | |
children | 76ff4f7136d3 |
rev | line source |
---|---|
pascal@5207 | 1 # SliTaz package receipt. |
pascal@5207 | 2 |
pascal@5207 | 3 PACKAGE="sslh" |
pascal@5207 | 4 VERSION="1.7a" |
pascal@5207 | 5 CATEGORY="network" |
pascal@5207 | 6 SHORT_DESC="Accept both HTTPS and SSH connections on the same port." |
pascal@5207 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@5207 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@5207 | 9 WEB_SITE="http://www.rutschle.net/tech/sslh.shtml" |
pascal@5207 | 10 WGET_URL="http://www.rutschle.net/tech/$TARBALL" |
pascal@5207 | 11 DEPENDS="libwrap" |
pascal@5207 | 12 BUILD_DEPENDS="libwrap-dev libwrap" |
pascal@5207 | 13 |
pascal@5207 | 14 # Rules to configure and make the package. |
pascal@5207 | 15 compile_rules() |
pascal@5207 | 16 { |
pascal@5207 | 17 cd $src |
pascal@5207 | 18 make |
pascal@5207 | 19 } |
pascal@5207 | 20 |
pascal@5207 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@5207 | 22 genpkg_rules() |
pascal@5207 | 23 { |
pascal@5207 | 24 mkdir -p $fs/usr/sbin |
pascal@5207 | 25 cp -a $src/sslh $fs/usr/sbin |
pascal@5207 | 26 } |
pascal@5207 | 27 |