# HG changeset patch # User Pascal Bellard # Date 1339516511 -7200 # Node ID 43e227ce43b9c1ccd8c681207659b24c43eb6bfb # Parent 465c8216c4d280765033d5fc58ba8f0f0c824c00 Add sshttp diff -r 465c8216c4d2 -r 43e227ce43b9 sshttp/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sshttp/receipt Tue Jun 12 17:55:11 2012 +0200 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="sshttp" +VERSION="0-27" +CATEGORY="network" +SHORT_DESC="hiding a SSH server behind a HTTP server." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://github.com/stealth/$PACKAGE" +WGET_URL="$WEB_SITE/tarball/$PACKAGE-$VERSION" +BUILD_DEPENDS="wget libcap" +DEPENDS="libcap gcc-lib-base" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make && cp README $WOK/$PACKAGE/description.txt +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/sbin + cp -a $src/sshttpd $fs/usr/sbin +} +