wok view swat/receipt @ rev 1441

Update BUILD_DEPENDS for eet lxappearance and ncmpc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 02 16:24:12 2008 +0000 (2008-10-02)
parents
children b51677fcfa18
line source
1 # SliTaz package receipt.
3 PACKAGE="swat"
4 VERSION="3.2.1"
5 CATEGORY="development"
6 SHORT_DESC="Samba Web Administration Tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="http://samba.org/"
9 DEPENDS="samba"
10 WANTED="samba"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 mkdir -p $fs/usr/share/samba
16 cp -a $_pkg/usr/share/samba/swat $fs/usr/share/samba
17 cp stuff/swat.desktop $fs/usr/share/applications
18 }
20 post_install()
21 {
22 if [ -f $1/etc/lighttpd/lighttpd.conf ]; then
23 if ! grep -q /usr/share/samba/swat/ $1/etc/lighttpd/lighttpd.conf; then
24 sed -e 's|.*"/examples/" => "/usr/share/examples/",| "/examples/" => "/usr/share/examples/",\n "/swat/" => "/usr/share/samba/swat/",|g' -i $1/etc/lighttpd/lighttpd.conf
25 if [ -z "$1" ]; then
26 # Start Web server.
27 /etc/init.d/lighttpd stop
28 /etc/init.d/lighttpd start
29 fi
30 fi
31 fi
32 }