wok rev 13031

Add sshttp
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 12 17:55:11 2012 +0200 (2012-06-12)
parents 465c8216c4d2
children f2870c4a7a92
files sshttp/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/sshttp/receipt	Tue Jun 12 17:55:11 2012 +0200
     1.3 @@ -0,0 +1,27 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="sshttp"
     1.7 +VERSION="0-27"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="hiding a SSH server behind a HTTP server."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="https://github.com/stealth/$PACKAGE"
    1.13 +WGET_URL="$WEB_SITE/tarball/$PACKAGE-$VERSION"
    1.14 +BUILD_DEPENDS="wget libcap"
    1.15 +DEPENDS="libcap gcc-lib-base"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	make && cp README $WOK/$PACKAGE/description.txt
    1.22 +}
    1.23 +
    1.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.25 +genpkg_rules()
    1.26 +{
    1.27 +	mkdir -p $fs/usr/sbin
    1.28 +	cp -a $src/sshttpd $fs/usr/sbin
    1.29 +}
    1.30 +