wok view lighttpd-modules/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents e6759743694c
children ea835222df2a
line source
1 # SliTaz package receipt.
3 PACKAGE="lighttpd-modules"
4 VERSION="1.4.35"
5 CATEGORY="network"
6 SHORT_DESC="Complementary modules for LightTPD Web server."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 WANTED="lighttpd"
10 WEB_SITE="http://www.lighttpd.net/"
11 HOST_ARCH="i486 arm"
13 DEPENDS="lighttpd bzip2 zlib"
15 BASE_MODULES="
16 access
17 accesslog
18 alias
19 cgi
20 dirlisting
21 indexfile
22 staticfile
23 rewrite
24 status
25 userdir"
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 # On SliTaz Lighttpd runs as user/group : www/www or 80/80.
29 genpkg_rules()
30 {
31 # Modules.
32 mkdir -p $fs/usr/
33 cp -a $install/usr/lib $fs/usr
34 for module in $BASE_MODULES
35 do
36 rm -f $fs/usr/lib/lighttpd/mod_${module}.so
37 done
38 rm -f $fs/usr/lib/lighttpd/*.la
39 }