wok view squirrelmail-msg_flags/receipt @ rev 10717

Up: slitaz-boot-scripts (4.4) - WARNING: no more hwconf.sh and i18n.sh so we sed in rcS.conf to change that or next boot boot get lots of problem
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 28 23:23:13 2011 +0200 (2011-05-28)
parents f81e47267992
children b13ed9740841
line source
1 # SliTaz package receipt.
3 PACKAGE="squirrelmail-msg_flags"
4 VERSION="1.4.15a-1.4.3"
5 CATEGORY="network"
6 SHORT_DESC="Few icons and flags for Web mail."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="msg_flags"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://www.squirrelmail.org/"
11 DEPENDS="squirrelmail"
12 WGET_URL="${WEB_SITE}plugins/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 mkdir -p $DESTDIR
18 cp -a $src $DESTDIR/$SOURCE
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/share/squirrelmail/plugins
25 cp -a $_pkg/$SOURCE $fs/usr/share/squirrelmail/plugins
26 }
28 post_install()
29 {
30 ( cd $1/usr/share/squirrelmail/plugins/$SOURCE
31 patch -p0 < patches/$SOURCE-squirrelmail-$(. $1/$INSTALLED/squirrelmail/receipt; echo $VERSION).diff )
32 echo "$PACKAGE" >> $1/$INSTALLED/squirrelmail/modifiers
33 echo "\$plugins[] = '$SOURCE';" >> $1/etc/squirrelmail/config_local.php
34 }
36 pre_remove()
37 {
38 ( cd /usr/share/squirrelmail/plugins/$SOURCE
39 patch -R -p0 < patches/$SOURCE-squirrelmail-$(. $INSTALLED/squirrelmail/receipt; echo $VERSION).diff )
40 sed -i "/^$PACKAGE\$/d" $INSTALLED/squirrelmail/modifiers
41 sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php
42 }