wok-undigest rev 621

Add hiawatha
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 24 16:35:40 2012 +0100 (2012-01-24)
parents bd145af62222
children 3962b96a13b8
files hiawatha/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/hiawatha/receipt	Tue Jan 24 16:35:40 2012 +0100
     1.3 @@ -0,0 +1,40 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="hiawatha"
     1.7 +VERSION="7.8.2"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="Advanced and secure webserver."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://www.hiawatha-webserver.org/"
    1.13 +WGET_URL="${WEB_SITE}files/$TARBALL"
    1.14 +PROVIDE="lighttpd"
    1.15 +CONFIG_FILES="/etc/hiawatha"
    1.16 +TAGS="webserver http server"
    1.17 +
    1.18 +DEPENDS="openssl libxml2 libxslt zlib"
    1.19 +BUILD_DEPENDS="openssl-dev libxml2-dev libxslt-dev zlib-dev"
    1.20 +
    1.21 +# Rules to configure and make the package.
    1.22 +compile_rules()
    1.23 +{
    1.24 +	cd $src
    1.25 +	./configure --prefix=/usr --mandir=/usr/share/man \
    1.26 +		--sysconfdir=/etc \
    1.27 +		--localstatedir=/var \
    1.28 +		--enable-chroot \
    1.29 +		--enable-command \
    1.30 +	$CONFIGURE_ARGS &&
    1.31 +	make &&
    1.32 +	make DESTDIR=$PWD/_pkg install
    1.33 +}
    1.34 +
    1.35 +# Rules to gen a SliTaz package suitable for Tazpkg.   
    1.36 +genpkg_rules()                                      
    1.37 +{
    1.38 +	mkdir -p $fs/usr
    1.39 +	cp -a $_pkg/var $fs
    1.40 +	cp -a $_pkg/etc $fs
    1.41 +	cp -a $_pkg/usr/bin $fs/usr
    1.42 +	cp -a $_pkg/usr/sbin $fs/usr
    1.43 +}