wok-next view squirrelmail-autorespond/receipt @ rev 20513

A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 15:58:17 2018 +0200 (2018-03-21)
parents 9e01bc6321ea
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="squirrelmail-autorespond"
4 VERSION="0.5.1-1.4"
5 CATEGORY="network"
6 SHORT_DESC="Vacation and forwarding plugin for Web mail."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="autorespond"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.squirrelmail.org/"
12 WGET_URL="${WEB_SITE}plugins/$TARBALL"
13 CONFIG_FILES="/etc/squirrelmail/config-$SOURCE.php"
15 DEPENDS="squirrelmail vacation"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir -p $DESTDIR
21 cp -a $src $DESTDIR/$SOURCE
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share/squirrelmail/plugins $fs/etc/squirrelmail
28 cp -a $install/$SOURCE $fs/usr/share/squirrelmail/plugins
29 mv $fs/usr/share/squirrelmail/plugins/$SOURCE/config.php \
30 $fs/etc/squirrelmail/config-$SOURCE.php
31 ln -s /etc/squirrelmail/config-$SOURCE.php \
32 $fs/usr/share/squirrelmail/plugins/$SOURCE/config.php
33 }
35 post_install()
36 {
37 echo "\$plugins[] = '$SOURCE';" >> "$1/etc/squirrelmail/config_local.php"
38 }
40 pre_remove()
41 {
42 sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php
43 }