wok-current view squirrelmail-sieve/receipt @ rev 25786
Bump gvfs to fix issue with open files on android device, patch udev to fix mtp issue on pcmanfm
| author | Stanislas Leduc <shann@slitaz.org> | 
|---|---|
| date | Tue Jul 29 18:05:13 2025 +0000 (3 months ago) | 
| parents | 46dcc80bef41 | 
| children | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="squirrelmail-sieve"
     4 VERSION="1.9.7"
     5 CATEGORY="network"
     6 SHORT_DESC="Sieve Mail Filters plugin for Web mail."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL2"
     9 SOURCE="avelsieve"
    10 TARBALL="$SOURCE-$VERSION.tar.gz"
    11 WEB_SITE="https://www.squirrelmail.org/"
    12 WGET_URL="${WEB_SITE}plugins/$TARBALL"
    13 CONFIG_FILES="/etc/squirrelmail/config-$SOURCE.php"
    14 HOST_ARCH="any"
    16 DEPENDS="squirrelmail"
    18 current_version()
    19 {
    20 	wget -O - "$WEB_SITE/plugin_view.php?id=73" 2>/dev/null | \
    21 	sed "/tarball/!d;s|.*$SOURCE.||;s|.tar.*||;q"
    22 }
    24 # Rules to configure and make the package.
    25 compile_rules()
    26 {
    27 	mkdir -p $DESTDIR
    28 	cp -a $src $DESTDIR/$SOURCE
    29 }
    31 # Rules to gen a SliTaz package suitable for Tazpkg.
    32 genpkg_rules()
    33 {
    34 	mkdir -p $fs/usr/share/squirrelmail/plugins $fs/etc/squirrelmail
    35 	cp -a  $install/$SOURCE $fs/usr/share/squirrelmail/plugins
    36 	mv $fs/usr/share/squirrelmail/plugins/$SOURCE/config/config_sample.php \
    37 		$fs/etc/squirrelmail/config-$SOURCE.php
    38 	ln -s /etc/squirrelmail/config-$SOURCE.php \
    39 		$fs/usr/share/squirrelmail/plugins/$SOURCE/config/config.php
    40 }
    42 post_install()
    43 {
    44 	echo "\$plugins[] = '$SOURCE';" >> "$1/etc/squirrelmail/config_local.php"
    45 }
    47 pre_remove()
    48 {
    49 	sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php
    50 }