wok view swat/receipt @ rev 7317

Up: mono to 2.8.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Nov 17 21:21:58 2010 +0000 (2010-11-17)
parents 7e83b4afc714
children 10c284c8d672
line source
1 # SliTaz package receipt.
3 PACKAGE="swat"
4 VERSION="3.5.6"
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 }