wok annotate squirrelmail-quota/receipt @ rev 25512
memtest: 386/1M support
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Feb 14 07:20:48 2023 +0000 (21 months ago) |
parents | 46dcc80bef41 |
children |
rev | line source |
---|---|
pascal@1227 | 1 # SliTaz package receipt. |
pascal@1227 | 2 |
pascal@1227 | 3 PACKAGE="squirrelmail-quota" |
pascal@1227 | 4 VERSION="2.2-1.4.0" |
pascal@1227 | 5 CATEGORY="network" |
pascal@1227 | 6 SHORT_DESC="Quota plugin for Web mail." |
pascal@1227 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15200 | 8 LICENSE="GPL2" |
pascal@1227 | 9 SOURCE="check_quota" |
pascal@1227 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@24746 | 11 WEB_SITE="https://www.squirrelmail.org/" |
pascal@1227 | 12 WGET_URL="${WEB_SITE}plugins/$TARBALL" |
pascal@2260 | 13 CONFIG_FILES="/etc/squirrelmail/config-$SOURCE.php" |
pascal@16264 | 14 HOST_ARCH="any" |
pascal@1227 | 15 |
pascal@15200 | 16 DEPENDS="squirrelmail squirrelmail-compatibility-plugin" |
pascal@15200 | 17 |
pascal@24094 | 18 current_version() |
pascal@24094 | 19 { |
pascal@24094 | 20 wget -O - "$WEB_SITE/plugin_view.php?id=237" 2>/dev/null | \ |
pascal@24094 | 21 sed "/tarball/!d;s|.*$SOURCE.||;s|.tar.*||;q" |
pascal@24094 | 22 } |
pascal@24094 | 23 |
pascal@9036 | 24 # Rules to configure and make the package. |
pascal@9036 | 25 compile_rules() |
pascal@9036 | 26 { |
pascal@9037 | 27 mkdir -p $DESTDIR |
pascal@9036 | 28 cp -a $src $DESTDIR/$SOURCE |
pascal@9036 | 29 } |
pascal@9036 | 30 |
pascal@1227 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1227 | 32 genpkg_rules() |
pascal@1227 | 33 { |
pascal@1227 | 34 mkdir -p $fs/usr/share/squirrelmail/plugins $fs/etc/squirrelmail |
pascal@15200 | 35 cp -a $install/$SOURCE $fs/usr/share/squirrelmail/plugins |
pascal@1227 | 36 mv $fs/usr/share/squirrelmail/plugins/$SOURCE/config.sample.php \ |
pascal@2260 | 37 $fs/etc/squirrelmail/config-$SOURCE.php |
pascal@1227 | 38 sed -i "s/settings\['quota_type'\] = 0/settings['quota_type'] = 1/" \ |
pascal@2260 | 39 $fs/etc/squirrelmail/config-$SOURCE.php |
pascal@2260 | 40 ln -s /etc/squirrelmail/config-$SOURCE.php \ |
pascal@1227 | 41 $fs/usr/share/squirrelmail/plugins/$SOURCE/config.php |
pascal@1227 | 42 } |
pascal@1227 | 43 |
pascal@1227 | 44 post_install() |
pascal@1227 | 45 { |
pascal@18730 | 46 echo "\$plugins[] = '$SOURCE';" >> "$1/etc/squirrelmail/config_local.php" |
pascal@1227 | 47 } |
pascal@2245 | 48 |
pascal@2260 | 49 pre_remove() |
pascal@2245 | 50 { |
pascal@2245 | 51 sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php |
pascal@2245 | 52 } |