wok view swat/receipt @ rev 13621

audacity: use local ffmpeg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 13 15:37:43 2012 +0100 (2012-11-13)
parents 88cfcda0c8aa
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="swat"
4 VERSION="3.6.7"
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 $fs/usr/share/applications
16 cp -a $install/usr/share/samba/swat $fs/usr/share/samba
17 }
19 post_install()
20 {
21 if [ -f $1/etc/lighttpd/lighttpd.conf ]; then
22 if ! grep -q /usr/share/samba/swat/ $1/etc/lighttpd/lighttpd.conf; then
23 sed -e 's|.*"/examples/" => "/usr/share/examples/",| "/examples/" => "/usr/share/examples/",\n "/swat/" => "/usr/share/samba/swat/",|g' -i $1/etc/lighttpd/lighttpd.conf
24 if [ -z "$1" ]; then
25 # Start Web server.
26 /etc/init.d/lighttpd stop
27 /etc/init.d/lighttpd start
28 fi
29 fi
30 fi
31 }