wok annotate squirrelmail-archive/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (2022-05-21)
parents 46dcc80bef41
children
rev   line source
pascal@1221 1 # SliTaz package receipt.
pascal@1221 2
pascal@1221 3 PACKAGE="squirrelmail-archive"
pascal@1221 4 VERSION="1.2-1.4.2"
pascal@1221 5 CATEGORY="network"
pascal@1221 6 SHORT_DESC="Mail archiver plugin for Web mail."
pascal@1221 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15200 8 LICENSE="GPL2"
pascal@1221 9 SOURCE="archive_mail"
pascal@1221 10 TARBALL="$SOURCE.$VERSION.tar.gz"
pascal@24746 11 WEB_SITE="https://www.squirrelmail.org/"
pascal@15200 12 WGET_URL="${WEB_SITE}plugins/$TARBALL"
pascal@16264 13 HOST_ARCH="any"
pascal@15200 14
pascal@1221 15 DEPENDS="squirrelmail"
pascal@1221 16
pascal@24094 17 current_version()
pascal@24094 18 {
pascal@24094 19 wget -O - "$WEB_SITE/plugin_view.php?id=121" 2>/dev/null | \
pascal@24094 20 sed "/tarball/!d;s|.*$SOURCE.||;s|.tar.*||;q"
pascal@24094 21 }
pascal@24094 22
pascal@9036 23 # Rules to configure and make the package.
pascal@9036 24 compile_rules()
pascal@9036 25 {
pascal@9037 26 mkdir -p $DESTDIR
pascal@9036 27 cp -a $src $DESTDIR/$SOURCE
pascal@9036 28 }
pascal@9036 29
pascal@1221 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1221 31 genpkg_rules()
pascal@1221 32 {
pascal@1221 33 mkdir -p $fs/usr/share/squirrelmail/plugins
pascal@15200 34 cp -a $install/$SOURCE $fs/usr/share/squirrelmail/plugins
pascal@1221 35 }
pascal@1221 36
pascal@1221 37 post_install()
pascal@1221 38 {
pascal@18730 39 echo "\$plugins[] = '$SOURCE';" >> "$1/etc/squirrelmail/config_local.php"
pascal@1221 40 }
pascal@2245 41
pascal@2260 42 pre_remove()
pascal@2245 43 {
pascal@2245 44 sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php
pascal@2245 45 }