wok-next view lighttpd-modules/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents d09da18b3028
children 6035b94b5dd0
line source
1 # SliTaz package receipt.
3 PACKAGE="lighttpd-modules"
4 VERSION="1.4.28"
5 CATEGORY="network"
6 SHORT_DESC="Complementary modules for LightTPD Web server."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="lighttpd bzip2 zlib"
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 # Rules to gen a SliTaz package suitable for Tazpkg.
24 # On SliTaz Lighttpd runs as user/group : www/www or 80/80.
25 genpkg_rules()
26 {
27 # Modules.
28 mkdir -p $fs/usr/
29 cp -a $_pkg/usr/lib $fs/usr
30 for module in $BASE_MODULES
31 do
32 rm -f $fs/usr/lib/lighttpd/mod_${module}.so
33 done
34 rm -f $fs/usr/lib/lighttpd/*.la
35 strip -s $fs/usr/lib/lighttpd/*
36 }