wok view squirrelmail-msg_flags/receipt @ rev 9036

iron-linux, squirrelmail plugins: fix genpkg_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 04 00:08:04 2011 +0100 (2011-03-04)
parents ff4c00ab546f
children 91a615759636
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 cp -a $src $DESTDIR/$SOURCE
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/share/squirrelmail/plugins
24 cp -a $_pkg/$SOURCE $fs/usr/share/squirrelmail/plugins
25 }
27 post_install()
28 {
29 ( cd $1/usr/share/squirrelmail/plugins/$SOURCE
30 patch -p0 < patches/$SOURCE-squirrelmail-$(. $1/$INSTALLED/squirrelmail/receipt; echo $VERSION).diff )
31 echo "$PACKAGE" >> $1/$INSTALLED/squirrelmail/modifiers
32 echo "\$plugins[] = '$SOURCE';" >> $1/etc/squirrelmail/config_local.php
33 }
35 pre_remove()
36 {
37 ( cd /usr/share/squirrelmail/plugins/$SOURCE
38 patch -R -p0 < patches/$SOURCE-squirrelmail-$(. $INSTALLED/squirrelmail/receipt; echo $VERSION).diff )
39 sed -i "/^$PACKAGE\$/d" $INSTALLED/squirrelmail/modifiers
40 sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php
41 }