wok annotate squirrelmail-calendard-file-backend/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (15 months ago)
parents 46dcc80bef41
children
rev   line source
pascal@2250 1 # SliTaz package receipt.
pascal@2250 2
pascal@2250 3 PACKAGE="squirrelmail-calendard-file-backend"
pascal@2250 4 VERSION="1.0-2.0"
pascal@2250 5 CATEGORY="network"
pascal@2250 6 SHORT_DESC="File-based backend for calendar data for Web mail."
pascal@2250 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15200 8 LICENSE="GPL2"
pascal@2250 9 SOURCE="calendar_file_backend"
pascal@2250 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@24746 11 WEB_SITE="https://www.squirrelmail.org/"
pascal@2250 12 WGET_URL="${WEB_SITE}plugins/$TARBALL"
pascal@2250 13 PROVIDE="squirrelmail-calendard-backend"
pascal@16264 14 HOST_ARCH="any"
pascal@2250 15
pascal@15200 16 DEPENDS="squirrelmail"
pascal@15200 17
pascal@24094 18 current_version()
pascal@24094 19 {
pascal@24094 20 wget -O - "$WEB_SITE/plugin_view.php?id=239" 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@2250 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2250 32 genpkg_rules()
pascal@2250 33 {
pascal@2250 34 mkdir -p $fs/usr/share/squirrelmail/plugins
pascal@15200 35 cp -a $install/$SOURCE $fs/usr/share/squirrelmail/plugins
pascal@2250 36 }
pascal@2250 37
pascal@2250 38 post_install()
pascal@2250 39 {
pascal@18730 40 echo "\$plugins[] = '$SOURCE';" >> "$1/etc/squirrelmail/config_local.php"
pascal@2250 41 }
pascal@2250 42
pascal@2260 43 pre_remove()
pascal@2250 44 {
pascal@2250 45 sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php
pascal@2250 46 }