wok annotate sslh/receipt @ rev 15693

linux-lxc: modify post_install() for update /etc/fstab
author Stanislas Leduc <shann@slitaz.org>
date Sat Dec 21 08:40:56 2013 +0100 (2013-12-21)
parents 3532f2e1c049
children f44ef80ff9e2
rev   line source
pascal@5207 1 # SliTaz package receipt.
pascal@5207 2
pascal@5207 3 PACKAGE="sslh"
pascal@15503 4 VERSION="1.15"
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@15593 8 LICENSE="GPL2"
pascal@5207 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@5207 10 WEB_SITE="http://www.rutschle.net/tech/sslh.shtml"
pascal@5207 11 WGET_URL="http://www.rutschle.net/tech/$TARBALL"
pascal@15593 12
pascal@13294 13 DEPENDS="libwrap libconfig"
pascal@13294 14 BUILD_DEPENDS="libwrap-dev libwrap libconfig-dev"
pascal@5207 15
pascal@5207 16 # Rules to configure and make the package.
pascal@5207 17 compile_rules()
pascal@5207 18 {
pascal@5207 19 cd $src
pascal@5207 20 make
pascal@5207 21 }
pascal@5207 22
pascal@5207 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@5207 24 genpkg_rules()
pascal@5207 25 {
pascal@5207 26 mkdir -p $fs/usr/sbin
pascal@11354 27 cp -a $src/sslh-fork $fs/usr/sbin
pascal@11354 28 cp -a $src/sslh-select $fs/usr/sbin
pascal@5207 29 }
pascal@5207 30