wok annotate sslh/receipt @ rev 17157

syslinux: fix rockridge (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 15 23:31:45 2014 +0200 (2014-09-15)
parents 3b4e4318134e
children 3cb07d9f8793
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@17141 12 TAGS="ssh"
pascal@15593 13
pascal@13294 14 DEPENDS="libwrap libconfig"
pascal@13294 15 BUILD_DEPENDS="libwrap-dev libwrap libconfig-dev"
pascal@5207 16
pascal@5207 17 # Rules to configure and make the package.
pascal@5207 18 compile_rules()
pascal@5207 19 {
pascal@5207 20 cd $src
pascal@5207 21 make
pascal@5207 22 }
pascal@5207 23
pascal@5207 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@5207 25 genpkg_rules()
pascal@5207 26 {
pascal@5207 27 mkdir -p $fs/usr/sbin
pascal@11354 28 cp -a $src/sslh-fork $fs/usr/sbin
pascal@11354 29 cp -a $src/sslh-select $fs/usr/sbin
pascal@5207 30 }
pascal@5207 31