wok-4.x view bozohttpd/receipt @ rev 12470
grub4dos: Fix Segmentation fault with new toolchain
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Wed Nov 09 21:09:27 2022 +0000 (2022-11-09) |
parents | 84ec1c40d51b |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="bozohttpd"
4 VERSION="20111118"
5 CATEGORY="network"
6 SHORT_DESC="Small and secure http version 1.1 server"
7 MAINTAINER="milka@konstelacioj.info"
8 DEPENDS="openssl"
9 BUILD_DEPENDS="openssl-dev"
10 SUGGESTED="haserl"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.eterna.com.au/$PACKAGE/"
13 WGET_URL="http://www.eterna.com.au/$PACKAGE/$TARBALL"
14 TAGS="http server lightweight cgi ipv6 ssl"
15 PROVIDE="lighttpd"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 make -f Makefile.boot all
22 mkdir -p $PWD/_pkg/usr/bin
23 mv bozohttpd $PWD/_pkg/usr/bin/
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 }