wok view lighttpd-modules/receipt @ rev 15416

Up: thunderbird-langpack-en_US (17.0.9esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 03 21:52:37 2013 +0100 (2013-11-03)
parents 6035b94b5dd0
children 8dc807868225
line source
1 # SliTaz package receipt.
3 PACKAGE="lighttpd-modules"
4 VERSION="1.4.30"
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 BASE_MODULES="
12 access
13 accesslog
14 alias
15 cgi
16 dirlisting
17 indexfile
18 staticfile
19 rewrite
20 status
21 userdir"
23 DEPENDS="lighttpd bzip2 zlib"
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 # On SliTaz Lighttpd runs as user/group : www/www or 80/80.
27 genpkg_rules()
28 {
29 # Modules.
30 mkdir -p $fs/usr/
31 cp -a $_pkg/usr/lib $fs/usr
32 for module in $BASE_MODULES
33 do
34 rm -f $fs/usr/lib/lighttpd/mod_${module}.so
35 done
36 rm -f $fs/usr/lib/lighttpd/*.la
37 strip -s $fs/usr/lib/lighttpd/*
38 }