wok view squirrelmail-legend/receipt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (23 months ago)
parents 46dcc80bef41
children
line source
1 # SliTaz package receipt.
3 PACKAGE="squirrelmail-legend"
4 VERSION="1.2-1.2.8"
5 CATEGORY="network"
6 SHORT_DESC="Adds a legend below the folder list in Web mail."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="legend"
10 TARBALL="$SOURCE.$VERSION.tar.gz"
11 WEB_SITE="https://www.squirrelmail.org/"
12 WGET_URL="${WEB_SITE}plugins/$TARBALL"
13 HOST_ARCH="any"
15 DEPENDS="squirrelmail"
17 current_version()
18 {
19 wget -O - "$WEB_SITE/plugin_view.php?id=66" 2>/dev/null | \
20 sed "/tarball/!d;s|.*$SOURCE.||;s|.tar.*||;q"
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 mkdir -p $DESTDIR
27 cp -a $src $DESTDIR/$SOURCE
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/squirrelmail/plugins
34 cp -a $install/$SOURCE $fs/usr/share/squirrelmail/plugins
35 }
37 post_install()
38 {
39 echo "\$plugins[] = '$SOURCE';" >> "$1/etc/squirrelmail/config_local.php"
40 }
42 pre_remove()
43 {
44 sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php
45 }