wok annotate sslh/receipt @ rev 14714

lib[a-n]*: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 11 10:41:23 2013 +0200 (2013-06-11)
parents 817cfcc1ec0a
children 3532f2e1c049
rev   line source
pascal@5207 1 # SliTaz package receipt.
pascal@5207 2
pascal@5207 3 PACKAGE="sslh"
pascal@13293 4 VERSION="1.13b"
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@13294 11 DEPENDS="libwrap libconfig"
pascal@13294 12 BUILD_DEPENDS="libwrap-dev libwrap libconfig-dev"
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@11354 25 cp -a $src/sslh-fork $fs/usr/sbin
pascal@11354 26 cp -a $src/sslh-select $fs/usr/sbin
pascal@5207 27 }
pascal@5207 28